summaryrefslogtreecommitdiff
authortille <tille>2002-06-19 23:22:29 (UTC)
committer tille <tille>2002-06-19 23:22:29 (UTC)
commit51ef8523daa3874e7b5542de6b19423fba261de6 (patch) (unidiff)
tree37a3e5039a8ad2d7ff5ae8418aa1f3cf9a2b63f5
parent544123fd047153a93ba60730db1c8cd2df8dc0df (diff)
downloadopie-51ef8523daa3874e7b5542de6b19423fba261de6.zip
opie-51ef8523daa3874e7b5542de6b19423fba261de6.tar.gz
opie-51ef8523daa3874e7b5542de6b19423fba261de6.tar.bz2
..
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/unsupported/oipkg/main.cpp b/noncore/unsupported/oipkg/main.cpp
index 6d83c31..de25e27 100644
--- a/noncore/unsupported/oipkg/main.cpp
+++ b/noncore/unsupported/oipkg/main.cpp
@@ -1,24 +1,24 @@
1 1
2#include "mainwindow.h" 2#include "mainwindow.h"
3 3
4#include <qpe/qpeapplication.h> 4#include <qpe/qpeapplication.h>
5#include <qstring.h> 5#include <qstring.h>
6//#include <qmessagebox.h> 6//#include <qmessagebox.h>
7int debugLevel; 7int debugLevel;
8 8
9int main( int argc, char ** argv ) 9int main( int argc, char ** argv )
10{ 10{
11 printf("This is oipkg\n"); 11 printf("This is oipkg\n");
12 printf("$id$\n"); 12 printf("$ID$\n");
13 debugLevel = 2; 13 debugLevel = 2;
14 if (argc > 1) 14 if (argc > 1)
15 { 15 {
16 debugLevel = QString ( argv[1] ).toInt(); 16 debugLevel = QString ( argv[1] ).toInt();
17 qDebug("setting debug level to %i",debugLevel); 17 qDebug("setting debug level to %i",debugLevel);
18 } 18 }
19 QPEApplication a( argc, argv ); 19 QPEApplication a( argc, argv );
20 MainWindow mw; 20 MainWindow mw;
21// if (argc > 2) 21// if (argc > 2)
22 // QMessageBox::information( &mw, "oipkg","While ipkg is working\noipkg is hanging.\nPlease be patient!"); 22 // QMessageBox::information( &mw, "oipkg","While ipkg is working\noipkg is hanging.\nPlease be patient!");
23 a.showMainDocumentWidget( &mw ); 23 a.showMainDocumentWidget( &mw );
24 return a.exec(); 24 return a.exec();