summaryrefslogtreecommitdiff
path: root/core
Unidiff
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/todo/main.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/pim/todo/main.cpp b/core/pim/todo/main.cpp
index 73977c2..58ed45c 100644
--- a/core/pim/todo/main.cpp
+++ b/core/pim/todo/main.cpp
@@ -22,14 +22,19 @@
22 22
23 23
24#include <qdatetime.h> 24#include <qdatetime.h>
25 25
26#include <qpe/qpeapplication.h> 26#include <qpe/qpeapplication.h>
27 27
28void myMessages( QtMsgType, const char* ) {
29
30}
31
28int main( int argc, char **argv ) 32int main( int argc, char **argv )
29{ 33{
34 qInstallMsgHandler( myMessages );
30 QPEApplication a( argc, argv ); 35 QPEApplication a( argc, argv );
31 36
32 QTime time; 37 QTime time;
33 time.start(); 38 time.start();
34 Todo::MainWindow mw; 39 Todo::MainWindow mw;
35 int t = time.elapsed(); 40 int t = time.elapsed();