X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fmain.cpp;h=71579df4380df8f84eeeae9de82aa947db9714a6;hb=258df63876c8b2b5f3ff14a6fbae14ea0b713457;hp=529fb5368797c0a019bd2988b5383db2223dd961;hpb=d29a6e9521e27e5d4d86fec82b5daa71085f87a5;p=quassel.git diff --git a/src/common/main.cpp b/src/common/main.cpp index 529fb536..71579df4 100644 --- a/src/common/main.cpp +++ b/src/common/main.cpp @@ -163,6 +163,7 @@ int main(int argc, char **argv) #endif cliParser->addOption("logfile", 'l', "Log to a file", "path"); cliParser->addOption("select-backend", 0, "Switch storage backend (migrating data if possible)", "backendidentifier"); + cliParser->addOption("select-authenticator", 0, "Select authentication backend", "authidentifier"); cliParser->addSwitch("add-user", 0, "Starts an interactive session to add a new core user"); cliParser->addOption("change-userpass", 0, "Starts an interactive session to change the password of the user identified by ", "username"); cliParser->addSwitch("oidentd", 0, "Enable oidentd integration"); @@ -186,7 +187,7 @@ int main(int argc, char **argv) #if defined BUILD_CORE CoreApplication app(argc, argv); #elif defined BUILD_QTUI -# if QT_VERSION >= 0x050600 +# if QT_VERSION >= 0x050600 && defined(Q_OS_WIN) QtUiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif # if QT_VERSION >= 0x050700 @@ -194,7 +195,7 @@ int main(int argc, char **argv) # endif QtUiApplication app(argc, argv); #elif defined BUILD_MONO -# if QT_VERSION >= 0x050600 +# if QT_VERSION >= 0x050600 && defined(Q_OS_WIN) MonolithicApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif # if QT_VERSION >= 0x050700 @@ -207,7 +208,7 @@ int main(int argc, char **argv) // the non-KDE version parses after app has been instantiated if (!cliParser->init(app.arguments())) { cliParser->usage(); - return false; + return EXIT_FAILURE; } #endif