author | zecke <zecke> | 2002-10-10 20:13:56 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-10-10 20:13:56 (UTC) |
commit | c90676c42c7be606a9fc690278b67909ba6a9c99 (patch) (unidiff) | |
tree | 85188f7ff373a90257a37f977748e3faf7efdcd7 | |
parent | 4aa326251d797d12e5228a7a1ea6d45518e64ba5 (diff) | |
download | opie-c90676c42c7be606a9fc690278b67909ba6a9c99.zip opie-c90676c42c7be606a9fc690278b67909ba6a9c99.tar.gz opie-c90676c42c7be606a9fc690278b67909ba6a9c99.tar.bz2 |
Drop the output with a custom message handler....
-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 | |||
@@ -12,33 +12,38 @@ | |||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "mainwindow.h" | 21 | #include "mainwindow.h" |
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 | ||
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 | ||
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(); |
36 | qWarning("QTime %d", t/1000 ); | 41 | qWarning("QTime %d", t/1000 ); |
37 | mw.setCaption("Opie Todolist"); | 42 | mw.setCaption("Opie Todolist"); |
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 | ||
43 | return a.exec(); | 48 | return a.exec(); |
44 | } | 49 | } |