summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ksysv/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksysv/main.cpp b/ksysv/main.cpp
index 31735c4..170a514 100644
--- a/ksysv/main.cpp
+++ b/ksysv/main.cpp
@@ -39,13 +39,13 @@ using namespace std;
static void myMessageOutput( TQtMsgType type, const char *msg )
{
switch ( type ) {
- case QtDebugMsg:
+ case TQtDebugMsg:
KSYSV_DEBUG(cerr << "Debug: " << msg << endl);
break;
- case QtWarningMsg:
+ case TQtWarningMsg:
KSYSV_DEBUG(cerr << "Warning: " << msg << endl);
break;
- case QtFatalMsg:
+ case TQtFatalMsg:
cerr << "Fatal: " << msg << endl;
abort(); // dump core on purpose
}