summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/main.cpp
Side-by-side diff
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 @@
+#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();
+}