diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-24 16:31:46 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-24 16:31:46 -0600 |
commit | 9bb8a7c149f8eff9606b86ad0e9745610fff7eeb (patch) | |
tree | 175075dc6c6d4594edbaba777ef8b07c94699ad6 /apps | |
parent | 5978cf545acb0bf8468e227541a4895535f285eb (diff) | |
download | ktorrent-9bb8a7c149f8eff9606b86ad0e9745610fff7eeb.tar.gz ktorrent-9bb8a7c149f8eff9606b86ad0e9745610fff7eeb.zip |
Fix FTBFS
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; |