diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/kernel/qpalette.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/kernel/qpalette.cpp')
-rw-r--r-- | src/kernel/qpalette.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/qpalette.cpp b/src/kernel/qpalette.cpp index 85ec2d9..a9e07f7 100644 --- a/src/kernel/qpalette.cpp +++ b/src/kernel/qpalette.cpp @@ -1100,13 +1100,13 @@ const QBrush &QPalette::directBrush( ColorGroup gr, QColorGroup::ColorRole r ) c { if ( (uint)gr > (uint)QPalette::NColorGroups ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr ); + qWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr ); #endif return data->active.br[QColorGroup::Foreground]; } if ( (uint)r >= (uint)QColorGroup::NColorRoles ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QPalette::directBrush: colorRole(%i) out of range", r ); + qWarning( "QPalette::directBrush: colorRole(%i) out of range", r ); #endif return data->active.br[QColorGroup::Foreground]; } @@ -1124,7 +1124,7 @@ const QBrush &QPalette::directBrush( ColorGroup gr, QColorGroup::ColorRole r ) c break; } #if defined(QT_CHECK_RANGE) - tqWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr ); + qWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr ); #endif return data->active.br[QColorGroup::Foreground]; // Satisfy compiler } @@ -1133,13 +1133,13 @@ void QPalette::directSetBrush( ColorGroup gr, QColorGroup::ColorRole r, const QB { if ( (uint)gr > (uint)QPalette::NColorGroups ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr ); + qWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr ); #endif return; } if ( (uint)r >= (uint)QColorGroup::NColorRoles ) { #if defined(QT_CHECK_RANGE) - tqWarning( "QPalette::directBrush: colorRole(%i) out of range", r ); + qWarning( "QPalette::directBrush: colorRole(%i) out of range", r ); #endif return; } @@ -1155,7 +1155,7 @@ void QPalette::directSetBrush( ColorGroup gr, QColorGroup::ColorRole r, const QB break; default: #if defined(QT_CHECK_RANGE) - tqWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr ); + qWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr ); #endif break; } |