diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/kernel/qcolor.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/kernel/qcolor.cpp')
-rw-r--r-- | src/kernel/qcolor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qcolor.cpp b/src/kernel/qcolor.cpp index e022d54..309915e 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) - tqWarning( "QColor::setNamedColor: could not parse color '%s'", + qWarning( "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) - tqWarning( "QColor::setHsv: HSV parameters out of range" ); + qWarning( "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) - tqWarning( "QColor::setRgb: RGB parameter(s) out of range" ); + qWarning( "QColor::setRgb: RGB parameter(s) out of range" ); #endif return; } |