summaryrefslogtreecommitdiff
path: root/utils/wpseditor/gui/src/main.cpp
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2008-08-29 21:08:38 +0000
committerFrank Gevaerts <frank@gevaerts.be>2008-08-29 21:08:38 +0000
commit5d22e3cbdd251819a4d2d07b9a12994d5aef778d (patch)
tree4c6a81187ccf065a5f296a903b9f7da88503e403 /utils/wpseditor/gui/src/main.cpp
parentcc31b1fbdae455f975b69dd6bffc23d8bd021566 (diff)
downloadrockbox-5d22e3cbdd251819a4d2d07b9a12994d5aef778d.tar.gz
rockbox-5d22e3cbdd251819a4d2d07b9a12994d5aef778d.zip
Add wpseditor, the Google Summer of Code 2008 project of Rostislav Chekan. Closes FS#9327
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18362 a1c6a512-1295-4272-9138-f99709370657
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}