summaryrefslogtreecommitdiff
path: root/noncore/unsupported/gsmtool
authordwmw2 <dwmw2>2002-04-21 10:45:43 (UTC)
committer dwmw2 <dwmw2>2002-04-21 10:45:43 (UTC)
commit6cf7106e761ed81c28f73338f2e431b41d54ed4e (patch) (side-by-side diff)
tree95896098d9443fb3b8aa765aed71b31363d6971a /noncore/unsupported/gsmtool
parente22eee22120129209bf91c91bd3176f977c75493 (diff)
downloadopie-6cf7106e761ed81c28f73338f2e431b41d54ed4e.zip
opie-6cf7106e761ed81c28f73338f2e431b41d54ed4e.tar.gz
opie-6cf7106e761ed81c28f73338f2e431b41d54ed4e.tar.bz2
Allow building as real Qt app too.
Diffstat (limited to 'noncore/unsupported/gsmtool') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/gsmtool/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/noncore/unsupported/gsmtool/main.cpp b/noncore/unsupported/gsmtool/main.cpp
index 8f68713..bccebe7 100644
--- a/noncore/unsupported/gsmtool/main.cpp
+++ b/noncore/unsupported/gsmtool/main.cpp
@@ -1,12 +1,23 @@
#include "gsmtool.h"
+#ifdef QWS
#include <qpe/qpeapplication.h>
+#else
+#include <qapplication.h>
+#endif
int main( int argc, char ** argv )
{
+#ifdef QWS
QPEApplication a( argc, argv );
GSMTool mw;
a.showMainWidget( &mw );
+#else
+ QApplication a( argc, argv );
+ GSMTool mw;
+ a.setMainWidget( &mw );
+ mw.show();
+#endif
return a.exec();
}