diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2019-02-01 04:11:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-02-01 17:16:43 -0800 |
commit | a1ffe115cfb27bd0dd57bf5266c7d37d9ce64dab (patch) | |
tree | 6589e06ecce1d0c461900fd2537bf5125afadf9d /core/subsurfacestartup.c | |
parent | 0c07b02974a65608d7d71ef150d322678ec1170b (diff) | |
download | subsurface-a1ffe115cfb27bd0dd57bf5266c7d37d9ce64dab.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>
Diffstat (limited to 'core/subsurfacestartup.c')
-rw-r--r-- | core/subsurfacestartup.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/subsurfacestartup.c b/core/subsurfacestartup.c index 07be0cb43..3669cc8ec 100644 --- a/core/subsurfacestartup.c +++ b/core/subsurfacestartup.c @@ -77,11 +77,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 } @@ -312,9 +307,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); } |