summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-22 14:19:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-22 14:19:00 -0600
commite524d05b81d36286a39baa698267e3acdea2a2b0 (patch)
treec06c763bd5544dff4bca82cd6c400a6dd7b2c7fc
parent6d06e1e3e431f10725b47f242753aa6395fb19ea (diff)
downloadbibletime-e524d05b81d36286a39baa698267e3acdea2a2b0.tar.gz
bibletime-e524d05b81d36286a39baa698267e3acdea2a2b0.zip
Fix FTBFS
-rw-r--r--bibletime/main.cpp6
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
}