-rw-r--r-- | core/pim/todo/main.cpp | 7 |
1 files changed, 6 insertions, 1 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 | |||
@@ -26,6 +26,11 @@ | |||
26 | #include <qpe/qpeapplication.h> | 26 | #include <qpe/qpeapplication.h> |
27 | 27 | ||
28 | void myMessages( QtMsgType, const char* ) { | ||
29 | |||
30 | } | ||
31 | |||
28 | int main( int argc, char **argv ) | 32 | int main( int argc, char **argv ) |
29 | { | 33 | { |
34 | qInstallMsgHandler( myMessages ); | ||
30 | QPEApplication a( argc, argv ); | 35 | QPEApplication a( argc, argv ); |
31 | 36 | ||
@@ -38,5 +43,5 @@ int main( int argc, char **argv ) | |||
38 | QObject::connect( &a, SIGNAL( flush() ), &mw, SLOT( slotFlush() ) ); | 43 | QObject::connect( &a, SIGNAL( flush() ), &mw, SLOT( slotFlush() ) ); |
39 | QObject::connect( &a, SIGNAL( reload() ), &mw, SLOT( slotReload() ) ); | 44 | QObject::connect( &a, SIGNAL( reload() ), &mw, SLOT( slotReload() ) ); |
40 | 45 | ||
41 | a.showMainWidget(&mw); | 46 | a.showMainWidget(&mw); |
42 | 47 | ||