From e524d05b81d36286a39baa698267e3acdea2a2b0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 22 Nov 2011 14:19:00 -0600 Subject: Fix FTBFS --- bibletime/main.cpp | 6 +++--- 1 file 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 } -- cgit v1.2.3