summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/main.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/wellenreiter/gui/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/main.cpp30
1 files changed, 7 insertions, 23 deletions
diff --git a/noncore/net/wellenreiter/gui/main.cpp b/noncore/net/wellenreiter/gui/main.cpp
index 270ce06..96a8c1c 100644
--- a/noncore/net/wellenreiter/gui/main.cpp
+++ b/noncore/net/wellenreiter/gui/main.cpp
@@ -11,33 +11,17 @@
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
**********************************************************************/
#include "mainwindow.h"
-
-#ifdef QWS
-#include <qpe/qpeapplication.h>
-#else
-#include <qapplication.h>
-#endif
+#include <opie2/oapplication.h>
int main( int argc, char **argv )
{
-#ifdef QWS
- QPEApplication a( argc, argv );
-#else
- QApplication a( argc, argv );
-#endif
-
- WellenreiterMainWindow w;
-
- w.setCaption( "Wellenreiter/Opie" );
-#ifdef QWS
- a.showMainWidget(&w);
-#else
- a.setMainWidget(&w);
- w.show();
-#endif
-
- return a.exec();
+ OApplication a( argc, argv, "Wellenreiter II" );
+ WellenreiterMainWindow* w = new WellenreiterMainWindow();
+ a.showMainWidget( w );
+ a.exec();
+ delete w;
+ return 0;
}