Make it possible to connect to facebook again

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2015-11-08 10:51:50 -02:00 committed by Dirk Hohndel
parent 70e6840d51
commit 486857f2b4
4 changed files with 10 additions and 2 deletions

View file

@ -40,8 +40,10 @@ void PluginManager::loadPlugins()
if(!plugin)
continue;
if (ISocialNetworkIntegration *social = qobject_cast<ISocialNetworkIntegration*>(plugin))
if (ISocialNetworkIntegration *social = qobject_cast<ISocialNetworkIntegration*>(plugin)) {
qDebug() << "Adding the plugin: " << social->socialNetworkName();
_socialNetworks.push_back(social);
}
}
}