summaryrefslogtreecommitdiff
path: root/core/pim/datebook/main.cpp
Unidiff
Diffstat (limited to 'core/pim/datebook/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/main.cpp19
1 files changed, 3 insertions, 16 deletions
diff --git a/core/pim/datebook/main.cpp b/core/pim/datebook/main.cpp
index caa5fb6..8004690 100644
--- a/core/pim/datebook/main.cpp
+++ b/core/pim/datebook/main.cpp
@@ -20,19 +20,6 @@
20 20
21#include "datebook.h" 21#include "datebook.h"
22#include <qpe/qpeapplication.h> 22#include <qpe/qpeapplication.h>
23 23#include <opie/oapplicationfactory.h>
24 24
25int main( int argc, char **argv ) 25OPIE_EXPORT_APP( OApplicationFactory<DateBook> )
26{
27 QPEApplication a( argc, argv );
28
29 DateBook e;
30 QObject::connect( &a, SIGNAL( flush() ), &e, SLOT( flush() ) );
31 QObject::connect( &a, SIGNAL( reload() ), &e, SLOT( reload() ) );
32
33
34 e.setCaption( DateBook::tr("Calendar") );
35 a.showMainWidget(&e);
36
37 return a.exec();
38}