diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-22 05:30:43 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-22 11:59:16 -0700 |
commit | a1f0263c64f7c78f621e4334f7cb0b2838178118 (patch) | |
tree | df5e87709c8a1c64efeb874fb3e94946ecba172c /subsurface-mobile-main.cpp | |
parent | 8946edfd922c6e3abde9d52f25e4818207a0f508 (diff) | |
download | subsurface-a1f0263c64f7c78f621e4334f7cb0b2838178118.tar.gz |
Remove useless command line handling code from mobile app
The files collected were never opened, this all is just the result of
a copy and paste job that clearly was never fully thought through.
Also remove support for ancient libgit2
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-mobile-main.cpp')
-rw-r--r-- | subsurface-mobile-main.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/subsurface-mobile-main.cpp b/subsurface-mobile-main.cpp index e5965090b..fc570a96b 100644 --- a/subsurface-mobile-main.cpp +++ b/subsurface-mobile-main.cpp @@ -22,12 +22,9 @@ QTranslator *qtTranslator, *ssrfTranslator; int main(int argc, char **argv) { int i; - bool no_filenames = true; QLoggingCategory::setFilterRules(QStringLiteral("qt.bluetooth* = true")); QApplication *application = new QApplication(argc, argv); (void)application; - QStringList files; - QStringList importedFiles; QStringList arguments = QCoreApplication::arguments(); bool dedicated_console = arguments.length() > 1 && @@ -40,18 +37,8 @@ int main(int argc, char **argv) parse_argument(a.toLocal8Bit().data()); continue; } - if (imported) { - importedFiles.push_back(a); - } else { - no_filenames = false; - files.push_back(a); - } } -#if !LIBGIT2_VER_MAJOR && LIBGIT2_VER_MINOR < 22 - git_threads_init(); -#else git_libgit2_init(); -#endif setup_system_prefs(); if (uiLanguage(0).contains("-US")) default_prefs.units = IMPERIAL_units; @@ -69,17 +56,6 @@ int main(int argc, char **argv) prefs.redceiling = 1; init_proxy(); - if (no_filenames) { - if (prefs.default_file_behavior == LOCAL_DEFAULT_FILE) { - QString defaultFile(prefs.default_filename); - if (!defaultFile.isEmpty()) - files.push_back(QString(prefs.default_filename)); - } else if (prefs.default_file_behavior == CLOUD_DEFAULT_FILE) { - QString cloudURL; - if (getCloudURL(cloudURL) == 0) - files.push_back(cloudURL); - } - } if (!quit) run_ui(); |