summaryrefslogtreecommitdiffstats
path: root/src/kernel/qcolor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qcolor.cpp')
-rw-r--r--src/kernel/qcolor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qcolor.cpp b/src/kernel/qcolor.cpp
index 309915e..e022d54 100644
--- a/src/kernel/qcolor.cpp
+++ b/src/kernel/qcolor.cpp
@@ -564,7 +564,7 @@ void QColor::setNamedColor( const QString &name )
d.d32.argb = Invalid;
d.d32.pix = Dirt;
#if defined(QT_CHECK_RANGE)
- qWarning( "QColor::setNamedColor: could not parse color '%s'",
+ tqWarning( "QColor::setNamedColor: could not parse color '%s'",
name.local8Bit().data() );
#endif
} else {
@@ -668,7 +668,7 @@ void QColor::setHsv( int h, int s, int v )
{
if ( h < -1 || (uint)s > 255 || (uint)v > 255 ) {
#if defined(QT_CHECK_RANGE)
- qWarning( "QColor::setHsv: HSV parameters out of range" );
+ tqWarning( "QColor::setHsv: HSV parameters out of range" );
#endif
return;
}
@@ -745,7 +745,7 @@ void QColor::setRgb( int r, int g, int b )
{
if ( (uint)r > 255 || (uint)g > 255 || (uint)b > 255 ) {
#if defined(QT_CHECK_RANGE)
- qWarning( "QColor::setRgb: RGB parameter(s) out of range" );
+ tqWarning( "QColor::setRgb: RGB parameter(s) out of range" );
#endif
return;
}