X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fmain.cpp;h=71579df4380df8f84eeeae9de82aa947db9714a6;hp=12aaa29c1fc8a6c609afd4af287d3d8ae8ecafcd;hb=258d157a228d2b2b46b01d3b33ab932b9979436a;hpb=a113f73e5f8ce89c3df5c42d55528404fc7a2294 diff --git a/src/common/main.cpp b/src/common/main.cpp index 12aaa29c..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,13 +187,19 @@ 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 + QtUiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); # 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 + MonolithicApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); # endif MonolithicApplication app(argc, argv); #endif @@ -201,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