summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/main.cpp
Unidiff
Diffstat (limited to 'core/pim/datebook2/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/main.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/pim/datebook2/main.cpp b/core/pim/datebook2/main.cpp
new file mode 100644
index 0000000..14bdc60
--- a/dev/null
+++ b/core/pim/datebook2/main.cpp
@@ -0,0 +1,15 @@
1#include "mainwindow.h"
2
3#include <qpe/qpeapplication.h>
4
5
6int main( int argc, char* argv[] ) {
7 QPEApplication app( argc, argv );
8
9 Datebook::MainWindow mw;
10 mw.setCaption( QObject::tr("Opie Datebook") );
11
12 app.showMainWidget( &mw );
13
14 return app.exec();
15}