diff options
author | 2019-02-01 04:11:25 +0200 | |
---|---|---|
committer | 2019-04-04 10:24:01 -0700 | |
commit | e685e7e9de3ad93a32fe51d7a04407c574cc08be (patch) | |
tree | 5148e454973c39381cb68fb4926ba24f5949e6f6 /desktop-widgets/plugins/facebook/facebook_integration.h | |
parent | 41de2f66e3a2c9732ba0d9ebe55c27d8d09718d2 (diff) | |
download | subsurface-e685e7e9de3ad93a32fe51d7a04407c574cc08be.tar.gz |
facebook: remove the featute from the code base
Remove from:
- unit tests
- desktop widgets
- preferences
- core intergration
- cmakefiles
- build scripts
- icons
- docs
Also remove the plugins and social network integration.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/plugins/facebook/facebook_integration.h')
-rw-r--r-- | desktop-widgets/plugins/facebook/facebook_integration.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/desktop-widgets/plugins/facebook/facebook_integration.h b/desktop-widgets/plugins/facebook/facebook_integration.h deleted file mode 100644 index 7a9ebc700..000000000 --- a/desktop-widgets/plugins/facebook/facebook_integration.h +++ /dev/null @@ -1,26 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0 -#ifndef FACEBOOK_INTEGRATION_H -#define FACEBOOK_INTEGRATION_H - -#include "core/isocialnetworkintegration.h" -#include <QString> - -class FacebookConnectWidget; -class SocialNetworkDialog; -class FacebookManager; - -class FacebookPlugin : public ISocialNetworkIntegration { - Q_OBJECT -public: - explicit FacebookPlugin(QObject* parent = 0); - bool isConnected() override; - void requestLogin() override; - void requestLogoff() override; - QString socialNetworkIcon() const override; - QString socialNetworkName() const override; - void requestUpload() override; -private: - FacebookConnectWidget *fbConnectWidget; -}; - -#endif |