-rw-r--r-- | noncore/apps/confedit/main.cpp | 5 |
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 @@ #include "mainwindow.h" #include <qpe/qpeapplication.h> -#include <stdio.h> + int main( int argc, char ** argv ) { - printf("This is confedit\n"); - printf("$Id$\n"); QPEApplication a( argc, argv ); MainWindow mw; + mw.showMaximized(); a.showMainDocumentWidget( &mw ); return a.exec(); } |