-rw-r--r-- | noncore/unsupported/gsmtool/main.cpp | 11 |
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(); } |