mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-27 00:19:25 -05:00
fixed connexion of setInterfaces for all plugins
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5001 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c843a047ff
commit
0d8f65d480
@ -50,12 +50,11 @@ void RsPluginManager::setInterfaces(RsPlugInInterfaces &interfaces)
|
|||||||
std::cerr << "RsPluginManager::setInterfaces() " << std::endl;
|
std::cerr << "RsPluginManager::setInterfaces() " << std::endl;
|
||||||
|
|
||||||
for(uint32_t i=0;i<_plugins.size();++i)
|
for(uint32_t i=0;i<_plugins.size();++i)
|
||||||
|
if(_plugins[i].plugin != NULL)
|
||||||
if(_plugins[i].plugin != NULL && _plugins[i].plugin->rs_cache_service() != NULL)
|
{
|
||||||
{
|
std::cerr << " setting iterface for plugin " << _plugins[i].plugin->getPluginName() << ", with RS_ID " << _plugins[i].plugin->rs_service_id() << std::endl ;
|
||||||
_plugins[i].plugin->setInterfaces(interfaces);
|
_plugins[i].plugin->setInterfaces(interfaces);
|
||||||
std::cerr << " setting iterface for plugin " << _plugins[i].plugin->getPluginName() << ", with RS_ID " << _plugins[i].plugin->rs_service_id() << std::endl ;
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RsPluginManager::setCacheDirectories(const std::string& local_cache, const std::string& remote_cache)
|
void RsPluginManager::setCacheDirectories(const std::string& local_cache, const std::string& remote_cache)
|
||||||
@ -263,7 +262,7 @@ bool RsPluginManager::loadPlugin(const std::string& plugin_name)
|
|||||||
|
|
||||||
pinfo.status = PLUGIN_STATUS_LOADED ;
|
pinfo.status = PLUGIN_STATUS_LOADED ;
|
||||||
pinfo.plugin = p ;
|
pinfo.plugin = p ;
|
||||||
p->setPlugInHandler(this); // WIN fix, cannot share global space with shared libraries
|
p->setPlugInHandler(this); // WIN fix, cannot share global space with shared libraries
|
||||||
pinfo.info_string = "" ;
|
pinfo.info_string = "" ;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user