author | tille <tille> | 2002-06-19 23:21:58 (UTC) |
---|---|---|
committer | tille <tille> | 2002-06-19 23:21:58 (UTC) |
commit | 544123fd047153a93ba60730db1c8cd2df8dc0df (patch) (side-by-side diff) | |
tree | a630e04f04f6b59912be044a6f948f4de76f8981 | |
parent | e29d044255fa5292c6e7ee754fa3956b5f989e18 (diff) | |
download | opie-544123fd047153a93ba60730db1c8cd2df8dc0df.zip opie-544123fd047153a93ba60730db1c8cd2df8dc0df.tar.gz opie-544123fd047153a93ba60730db1c8cd2df8dc0df.tar.bz2 |
.
-rw-r--r-- | noncore/unsupported/oipkg/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/unsupported/oipkg/main.cpp b/noncore/unsupported/oipkg/main.cpp index bb3d1db..6d83c31 100644 --- a/noncore/unsupported/oipkg/main.cpp +++ b/noncore/unsupported/oipkg/main.cpp @@ -1,23 +1,24 @@ #include "mainwindow.h" #include <qpe/qpeapplication.h> #include <qstring.h> //#include <qmessagebox.h> int debugLevel; int main( int argc, char ** argv ) { - + printf("This is oipkg\n"); + printf("$id$\n"); debugLevel = 2; if (argc > 1) { debugLevel = QString ( argv[1] ).toInt(); qDebug("setting debug level to %i",debugLevel); } QPEApplication a( argc, argv ); MainWindow mw; // if (argc > 2) // QMessageBox::information( &mw, "oipkg","While ipkg is working\noipkg is hanging.\nPlease be patient!"); a.showMainDocumentWidget( &mw ); return a.exec(); |