summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/main.cpp
blob: 14bdc60bce65c275eb286393c2e9166591b10fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "mainwindow.h"

#include <qpe/qpeapplication.h>


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

    Datebook::MainWindow mw;
    mw.setCaption( QObject::tr("Opie Datebook") );

    app.showMainWidget( &mw );

    return app.exec();
}