diff options
Diffstat (limited to 'src/kernel/qcolor_x11.cpp')
-rw-r--r-- | src/kernel/qcolor_x11.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qcolor_x11.cpp b/src/kernel/qcolor_x11.cpp index 8dc7921..eeaee5e 100644 --- a/src/kernel/qcolor_x11.cpp +++ b/src/kernel/qcolor_x11.cpp @@ -640,7 +640,7 @@ void QColor::setSystemNamedColor( const QString& name ) } } else if ( !color_init ) { #if defined(QT_CHECK_STATE) - tqWarning( "QColor::setSystemNamedColor: Cannot perform this operation " + qWarning( "QColor::setSystemNamedColor: Cannot perform this operation " "because QApplication does not exist" ); #endif // set color to invalid @@ -737,7 +737,7 @@ int QColor::enterAllocContext() init_context_stack(); if ( context_ptr+1 == MAX_CONTEXTS ) { #if defined(QT_CHECK_STATE) - tqWarning( "QColor::enterAllocContext: Context stack overflow" ); + qWarning( "QColor::enterAllocContext: Context stack overflow" ); #endif return 0; } @@ -759,7 +759,7 @@ void QColor::leaveAllocContext() init_context_stack(); if ( context_ptr == 0 ) { #if defined(QT_CHECK_STATE) - tqWarning( "QColor::leaveAllocContext: Context stack underflow" ); + qWarning( "QColor::leaveAllocContext: Context stack underflow" ); #endif return; } |