summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/main.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/net/wellenreiter/gui/main.cpp b/noncore/net/wellenreiter/gui/main.cpp
index 3307d49..270ce06 100644
--- a/noncore/net/wellenreiter/gui/main.cpp
+++ b/noncore/net/wellenreiter/gui/main.cpp
@@ -10,13 +10,13 @@
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14**********************************************************************/ 14**********************************************************************/
15 15
16#include "wellenreiter.h" 16#include "mainwindow.h"
17 17
18#ifdef QWS 18#ifdef QWS
19#include <qpe/qpeapplication.h> 19#include <qpe/qpeapplication.h>
20#else 20#else
21#include <qapplication.h> 21#include <qapplication.h>
22#endif 22#endif
@@ -26,18 +26,18 @@ int main( int argc, char **argv )
26#ifdef QWS 26#ifdef QWS
27 QPEApplication a( argc, argv ); 27 QPEApplication a( argc, argv );
28#else 28#else
29 QApplication a( argc, argv ); 29 QApplication a( argc, argv );
30#endif 30#endif
31 31
32 Wellenreiter e; 32 WellenreiterMainWindow w;
33 33
34 e.setCaption( Wellenreiter::tr("Wellenreiter") ); 34 w.setCaption( "Wellenreiter/Opie" );
35#ifdef QWS 35#ifdef QWS
36 a.showMainWidget(&e); 36 a.showMainWidget(&w);
37#else 37#else
38 a.setMainWidget(&e); 38 a.setMainWidget(&w);
39 e.show(); 39 w.show();
40#endif 40#endif
41 41
42 return a.exec(); 42 return a.exec();
43} 43}