diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-04-10 04:29:29 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-04-30 23:59:23 +0200 |
commit | 47e37635f50c09b4f9a9ee7699e3120bab3e4088 (patch) | |
tree | 061c2f675fb7e244ebe4b54ef206bfbd615c91f8 /wonkoclient/main.cpp | |
parent | fcd4a482f759cd58ee319a51082d0146b7e426e2 (diff) | |
download | PrismLauncher-47e37635f50c09b4f9a9ee7699e3120bab3e4088.tar.gz PrismLauncher-47e37635f50c09b4f9a9ee7699e3120bab3e4088.tar.bz2 PrismLauncher-47e37635f50c09b4f9a9ee7699e3120bab3e4088.zip |
NOISSUE split GUI stuff from logic library
Diffstat (limited to 'wonkoclient/main.cpp')
-rw-r--r-- | wonkoclient/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wonkoclient/main.cpp b/wonkoclient/main.cpp index 1ee6d881..eaf92c5d 100644 --- a/wonkoclient/main.cpp +++ b/wonkoclient/main.cpp @@ -3,7 +3,7 @@ // #include "WonkoClient.h" -#include <QApplication> +#include <QCoreApplication> #include <QDebug> #include <QtWidgets/QInputDialog> #include <QtGui/QDesktopServices> @@ -11,7 +11,7 @@ int main(int argc, char *argv[]) { - QApplication a(argc, argv); + QCoreApplication a(argc, argv); if (a.arguments().contains("-d")) { int i = a.arguments().lastIndexOf("-d") + 1; |