diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-04-19 12:39:59 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-04-19 14:27:54 -0700 |
commit | ad66297cfd843199f39e3a231cb8311652ea183c (patch) | |
tree | fedc6cf6422fa120de30c570f3b9a7a1224242de /core/subsurfacestartup.c | |
parent | 4fd4b75269469ee1029c51bdaf8275149d20a929 (diff) | |
download | subsurface-ad66297cfd843199f39e3a231cb8311652ea183c.tar.gz |
desktop: remove user survey
We have never made good use of the results. Let's just remove it.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurfacestartup.c')
-rw-r--r-- | core/subsurfacestartup.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/subsurfacestartup.c b/core/subsurfacestartup.c index bf61f9878..c5fb7b611 100644 --- a/core/subsurfacestartup.c +++ b/core/subsurfacestartup.c @@ -103,7 +103,6 @@ struct preferences default_prefs = { .extract_video_thumbnails_position = 20, // The first fifth seems like a reasonable place }; -int run_survey; int ignore_bt; #ifdef SUBSURFACE_MOBILE_DESKTOP char *testqml = NULL; @@ -184,7 +183,6 @@ static void print_help() printf("\n --import logfile ... Logs before this option is treated as base, everything after is imported"); printf("\n --verbose|-v Verbose debug (repeat to increase verbosity)"); printf("\n --version Prints current version"); - printf("\n --survey Offer to submit a user survey"); printf("\n --user=<test> Choose configuration space for user <test>"); #ifdef SUBSURFACE_MOBILE_DESKTOP printf("\n --testqml=<dir> Use QML files from <dir> instead of QML resources"); @@ -243,10 +241,6 @@ void parse_argument(const char *arg) print_version(); exit(0); } - if (strcmp(arg, "--survey") == 0) { - run_survey = true; - return; - } if (strcmp(arg, "--allow_run_as_root") == 0) { ++force_root; return; |