summaryrefslogtreecommitdiff
path: root/utils/wpseditor/gui/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/wpseditor/gui/src/main.cpp')
-rw-r--r--utils/wpseditor/gui/src/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/wpseditor/gui/src/main.cpp b/utils/wpseditor/gui/src/main.cpp
new file mode 100644
index 0000000000..0ba22c9fce
--- /dev/null
+++ b/utils/wpseditor/gui/src/main.cpp
@@ -0,0 +1,16 @@
1#include <QApplication>
2#include "qwpseditorwindow.h"
3#include "utils.h"
4#include <QPointer>
5
6QPointer<QWpsEditorWindow> win;
7
8int main(int argc, char ** argv) {
9 QApplication app( argc, argv );
10
11 win = new QWpsEditorWindow;
12 win->show();
13 app.connect( &app, SIGNAL( lastWindowClosed() ), &app, SLOT( quit() ) );
14
15 return app.exec();
16}