diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /src/kernel/qpalette.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
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 a9e07f7..85ec2d9 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) - qWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr ); + tqWarning( "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) - qWarning( "QPalette::directBrush: colorRole(%i) out of range", r ); + tqWarning( "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) - qWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr ); + tqWarning( "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) - qWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr ); + tqWarning( "QPalette::directBrush: colorGroup(%i) out of range", gr ); #endif return; } if ( (uint)r >= (uint)QColorGroup::NColorRoles ) { #if defined(QT_CHECK_RANGE) - qWarning( "QPalette::directBrush: colorRole(%i) out of range", r ); + tqWarning( "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) - qWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr ); + tqWarning( "QPalette::directBrush: colorGroup(%i) internal error", gr ); #endif break; } |