Minor improvements at startup

Found due to expiry date
This commit is contained in:
Klaus Basan
2017-01-01 04:37:29 +01:00
committed by Mathew Sutcliffe
parent 683cffd42b
commit 2821cd5213
6 changed files with 15 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
CGuiApplication a("swift launcher", CApplicationInfo::Laucher, CIcons::swiftLauncher1024());
a.useWebDataServices(BlackCore::CWebReaderFlags::AllSwiftDbReaders, CDatabaseReaderConfigList::forLauncher());
a.addParserOption({{"i", "installer"}, QCoreApplication::translate("main", "Installer setup."), "installer"});
a.parse();
if (!a.parse()) { return EXIT_FAILURE; }
if (!a.start()) { return EXIT_FAILURE; }
//! [SwiftApplicationDemo]