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) (show 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
@@ -13,7 +13,7 @@
**
**********************************************************************/
-#include "wellenreiter.h"
+#include "mainwindow.h"
#ifdef QWS
#include <qpe/qpeapplication.h>
@@ -29,14 +29,14 @@ int main( int argc, char **argv )
QApplication a( argc, argv );
#endif
- Wellenreiter e;
+ WellenreiterMainWindow w;
- e.setCaption( Wellenreiter::tr("Wellenreiter") );
+ w.setCaption( "Wellenreiter/Opie" );
#ifdef QWS
- a.showMainWidget(&e);
+ a.showMainWidget(&w);
#else
- a.setMainWidget(&e);
- e.show();
+ a.setMainWidget(&w);
+ w.show();
#endif
return a.exec();