diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-11-08 10:51:50 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-08 09:44:40 -0800 |
commit | 486857f2b4264295a078de5dad541122186d22ab (patch) | |
tree | 75d4cd4b0f4e142f49765310e743f7a4a595d944 /subsurface-core | |
parent | 70e6840d51d876b4d906f3af0a4be71bd3233e48 (diff) | |
download | subsurface-486857f2b4264295a078de5dad541122186d22ab.tar.gz |
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>
Diffstat (limited to 'subsurface-core')
-rw-r--r-- | subsurface-core/pluginmanager.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/subsurface-core/pluginmanager.cpp b/subsurface-core/pluginmanager.cpp index 5c0f22525..28c978280 100644 --- a/subsurface-core/pluginmanager.cpp +++ b/subsurface-core/pluginmanager.cpp @@ -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); + } } } |