mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-03 06:35:08 -04:00
Fixed FeedeReader compile & changed feed item icons
This commit is contained in:
parent
94afa6dbf9
commit
c12d633730
3 changed files with 12 additions and 12 deletions
|
@ -55,7 +55,7 @@ extern "C" {
|
|||
#ifdef WIN32
|
||||
__declspec(dllexport)
|
||||
#endif
|
||||
uint32_t RETROSHARE_PLUGIN_revision = 0;
|
||||
uint32_t RETROSHARE_PLUGIN_revision = abs(atoi(RS_EXTRA_VERSION)) ;
|
||||
|
||||
// This symbol contains the svn revision number grabbed from the executable.
|
||||
// It will be tested by RS to load the plugin automatically, since it is safe to load plugins
|
||||
|
@ -72,7 +72,7 @@ void FeedReaderPlugin::getPluginVersion(int& major, int& minor, int &build, int&
|
|||
major = RS_MAJOR_VERSION;
|
||||
minor = RS_MINOR_VERSION;
|
||||
build = RS_MINI_VERSION;
|
||||
svn_rev = 0;
|
||||
svn_rev = abs(atoi(RS_EXTRA_VERSION)) ;
|
||||
}
|
||||
|
||||
FeedReaderPlugin::FeedReaderPlugin()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue