summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/main.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/unsupported/oipkg/main.cpp b/noncore/unsupported/oipkg/main.cpp
new file mode 100644
index 0000000..264fd55
--- a/dev/null
+++ b/noncore/unsupported/oipkg/main.cpp
@@ -0,0 +1,19 @@
1
2#include "mainwindow.h"
3
4#include <qpe/qpeapplication.h>
5#include <qstring.h>
6int debugLevel;
7
8int main( int argc, char ** argv )
9{
10 debugLevel = 1;
11 if (argc > 2)
12 {
13 debugLevel = QString ( argv[1] ).toInt();
14 }
15 QPEApplication a( argc, argv );
16 MainWindow mw;
17 a.showMainDocumentWidget( &mw );
18 return a.exec();
19}