summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/main.cpp
blob: 4b5107e85ac3202f0fb74cd15867a51d4a5a02d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <qpe/qpeapplication.h>

#include "mainwindow.h"

int main(int argc, char **argv) {
    QPEApplication app( argc, argv );

    MainWindow mw;
    mw.setCaption(QObject::tr("Opie console") );
    app.showMainWidget( &mw );

    app.exec();


    return 0;
}