diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/ktorrent/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/ktorrent/main.cpp b/apps/ktorrent/main.cpp index 8e47d69..5e9fcb2 100644 --- a/apps/ktorrent/main.cpp +++ b/apps/ktorrent/main.cpp @@ -57,13 +57,13 @@ void StupidWarningMessagesFromTQt( TQtMsgType type, const char *msg ) { switch ( type ) { - case QtDebugMsg: + case TQtDebugMsg: // printf("TQt: Debug: %s\n",msg); break; - case QtWarningMsg: + case TQtWarningMsg: printf("TQt: Warning: %s\n",msg); break; - case QtFatalMsg: + case TQtFatalMsg: printf("TQt: Fatal : %s\n",msg); abort(); // deliberately core dump break; |