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

#include "mainwindow.h"

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

int main( int argc, char ** argv )
{
  debugLevel = 1;
  if (argc > 2)
    {
      debugLevel = QString ( argv[1] ).toInt();
    }
  QPEApplication a( argc, argv );
  MainWindow mw;
  a.showMainDocumentWidget( &mw );
  return a.exec();
}