aboutsummaryrefslogtreecommitdiffstats
path: root/core/subsurfacestartup.c
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2019-02-01 04:11:25 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-04-04 10:24:01 -0700
commite685e7e9de3ad93a32fe51d7a04407c574cc08be (patch)
tree5148e454973c39381cb68fb4926ba24f5949e6f6 /core/subsurfacestartup.c
parent41de2f66e3a2c9732ba0d9ebe55c27d8d09718d2 (diff)
downloadsubsurface-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 'core/subsurfacestartup.c')
-rw-r--r--core/subsurfacestartup.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/subsurfacestartup.c b/core/subsurfacestartup.c
index 607090219..2eafbdc56 100644
--- a/core/subsurfacestartup.c
+++ b/core/subsurfacestartup.c
@@ -76,11 +76,6 @@ struct preferences default_prefs = {
.pscr_ratio = 100,
.show_pictures_in_profile = true,
.tankbar = false,
- .facebook = {
- .user_id = NULL,
- .album_id = NULL,
- .access_token = NULL
- },
.defaultsetpoint = 1100,
.geocoding = {
.category = { 0 }
@@ -311,9 +306,6 @@ void copy_prefs(struct preferences *src, struct preferences *dest)
dest->cloud_storage_password = copy_string(src->cloud_storage_password);
dest->cloud_storage_email = copy_string(src->cloud_storage_email);
dest->cloud_storage_email_encoded = copy_string(src->cloud_storage_email_encoded);
- dest->facebook.access_token = copy_string(src->facebook.access_token);
- dest->facebook.user_id = copy_string(src->facebook.user_id);
- dest->facebook.album_id = copy_string(src->facebook.album_id);
dest->ffmpeg_executable = copy_string(src->ffmpeg_executable);
}