diff options
Diffstat (limited to 'bibletime/main.cpp')
-rw-r--r-- | bibletime/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bibletime/main.cpp b/bibletime/main.cpp index e77993f..56c8ecd 100644 --- a/bibletime/main.cpp +++ b/bibletime/main.cpp @@ -49,16 +49,16 @@ BibleTime* bibletime_ptr = 0; void myMessageOutput( TQtMsgType type, const char *msg ) { //we use this messagehandler to switch debugging off in final releases switch ( type ) { - case QtDebugMsg: + case TQtDebugMsg: if (showDebugMessages) { //only show messages if they are enabled! fprintf( stderr,"(BibleTime %s) Debug: %s\n",VERSION, msg ); } break; - case QtWarningMsg: + case TQtWarningMsg: //if (showDebugMessages) //comment out for releases so users don't get our debug warnings fprintf( stderr,"(BibleTime %s) WARNING: %s\n",VERSION, msg ); break; - case QtFatalMsg: + case TQtFatalMsg: fprintf( stderr,"(BibleTime %s) _FATAL_: %s\nPlease visit http://bugs.pearsoncomputing.net and report this bug!",VERSION, msg ); abort(); // dump core on purpose } |