summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/main.cpp
blob: bb3d1dbcc1c1d4f7ad7e32d6f525a38960b5b84b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#include "mainwindow.h"

#include <qpe/qpeapplication.h>
#include <qstring.h>
//#include <qmessagebox.h>
int debugLevel;

int main( int argc, char ** argv )
{

  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();
}