aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config/main.cpp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-01-26 07:06:02 +0100
committerSven Gothel <[email protected]>2014-01-26 07:06:02 +0100
commite6f4251945c228a775649b5ccd7f11dd4519c28d (patch)
tree8454b34363358cf9bb502021a68c6985c97daac4 /utils/alsoft-config/main.cpp
parent389ae1f767bfad6116e21306fc3cdf89a4cbcc0a (diff)
parent49baa9128dd98e986639def4f24c7522d9ec6b56 (diff)
Merge branch 'UPSTREAM'
Diffstat (limited to 'utils/alsoft-config/main.cpp')
-rw-r--r--utils/alsoft-config/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/alsoft-config/main.cpp b/utils/alsoft-config/main.cpp
new file mode 100644
index 00000000..b48f94ec
--- /dev/null
+++ b/utils/alsoft-config/main.cpp
@@ -0,0 +1,11 @@
+#include "mainwindow.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+
+ return a.exec();
+}