-rw-r--r-- | core/pim/todo/main.cpp | 5 |
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 @@ -20,18 +20,23 @@ #include "mainwindow.h" #include <qdatetime.h> #include <qpe/qpeapplication.h> +void myMessages( QtMsgType, const char* ) { + +} + int main( int argc, char **argv ) { + qInstallMsgHandler( myMessages ); QPEApplication a( argc, argv ); QTime time; time.start(); Todo::MainWindow mw; int t = time.elapsed(); qWarning("QTime %d", t/1000 ); mw.setCaption("Opie Todolist"); |