diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-21 16:28:25 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-21 16:28:25 -0600 |
commit | c6fee889e9a4a644560804c7226c5fd6eb475e48 (patch) | |
tree | 1f8bf93dca4228546c4650acd2fc258a9d9fed8c /kdevdesigner/designer/outputwindow.cpp | |
parent | 40e804a0088586459e5b89356c54448525945470 (diff) | |
download | tdevelop-c6fee889e9a4a644560804c7226c5fd6eb475e48.tar.gz tdevelop-c6fee889e9a4a644560804c7226c5fd6eb475e48.zip |
Fix FTBFS
Diffstat (limited to 'kdevdesigner/designer/outputwindow.cpp')
-rw-r--r-- | kdevdesigner/designer/outputwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kdevdesigner/designer/outputwindow.cpp b/kdevdesigner/designer/outputwindow.cpp index ad1cab22..33113ef5 100644 --- a/kdevdesigner/designer/outputwindow.cpp +++ b/kdevdesigner/designer/outputwindow.cpp @@ -97,7 +97,7 @@ static void debugMessageOutput( TQtMsgType type, const char *msg ) TQString s( msg ); s += "\n"; - if ( type != QtFatalMsg ) { + if ( type != TQtFatalMsg ) { if ( debugoutput && debugoutput->isVisible() ) debugoutput->append( s ); else if ( OutputWindow::oldMsgHandler && OutputWindow::oldMsgHandler != debugMessageOutput ) |