summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit
Unidiff
Diffstat (limited to 'noncore/apps/confedit') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/noncore/apps/confedit/main.cpp b/noncore/apps/confedit/main.cpp
index 58a79ce..6c18adb 100644
--- a/noncore/apps/confedit/main.cpp
+++ b/noncore/apps/confedit/main.cpp
@@ -1,15 +1,14 @@
1 1
2#include "mainwindow.h" 2#include "mainwindow.h"
3 3
4#include <qpe/qpeapplication.h> 4#include <qpe/qpeapplication.h>
5#include <stdio.h> 5
6int main( int argc, char ** argv ) 6int main( int argc, char ** argv )
7{ 7{
8 printf("This is confedit\n");
9 printf("$Id$\n");
10 8
11 QPEApplication a( argc, argv ); 9 QPEApplication a( argc, argv );
12 MainWindow mw; 10 MainWindow mw;
11 mw.showMaximized();
13 a.showMainDocumentWidget( &mw ); 12 a.showMainDocumentWidget( &mw );
14 return a.exec(); 13 return a.exec();
15} 14}