diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0af9472..7936adc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -40,18 +40,18 @@ static KCmdLineOptions options[] = KCmdLineLastOption }; -void myMessageOutput( QtMsgType type, const char *msg ) +void myMessageOutput( TQtMsgType type, const char *msg ) { return; switch ( type ) { - case QtDebugMsg: + case TQtDebugMsg: fprintf( stderr, "Debug: %s\n", msg ); break; - case QtWarningMsg: + case TQtWarningMsg: fprintf( stderr, "Warning: %s\n", msg ); break; - case QtFatalMsg: + case TQtFatalMsg: fprintf( stderr, "Fatal: %s\n", msg ); abort(); // deliberately core dump } |