diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /src/dialogs/qcolordialog.cpp | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
Diffstat (limited to 'src/dialogs/qcolordialog.cpp')
-rw-r--r-- | src/dialogs/qcolordialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dialogs/qcolordialog.cpp b/src/dialogs/qcolordialog.cpp index d365e96f7..fada75546 100644 --- a/src/dialogs/qcolordialog.cpp +++ b/src/dialogs/qcolordialog.cpp @@ -366,7 +366,7 @@ void TQWellArray::setCellBrush( int row, int col, const TQBrush &b ) d->brush[row*numCols()+col] = b; #ifdef QT_CHECK_RANGE else - qWarning( "TQWellArray::setCellBrush( %d, %d ) out of range", row, col ); + tqWarning( "TQWellArray::setCellBrush( %d, %d ) out of range", row, col ); #endif } @@ -471,7 +471,7 @@ TQRgb TQColorDialog::customColor( int i ) initRGB(); if ( i < 0 || i >= customCount() ) { #ifdef QT_CHECK_RANGE - qWarning( "TQColorDialog::customColor() index %d out of range", i ); + tqWarning( "TQColorDialog::customColor() index %d out of range", i ); #endif i = 0; } @@ -486,7 +486,7 @@ void TQColorDialog::setCustomColor( int i, TQRgb c ) initRGB(); if ( i < 0 || i >= customCount() ) { #ifdef QT_CHECK_RANGE - qWarning( "TQColorDialog::setCustomColor() index %d out of range", i ); + tqWarning( "TQColorDialog::setCustomColor() index %d out of range", i ); #endif return; } @@ -503,7 +503,7 @@ void TQColorDialog::setStandardColor( int i, TQRgb c ) initRGB(); if ( i < 0 || i >= 6*8 ) { #ifdef QT_CHECK_RANGE - qWarning( "TQColorDialog::setStandardColor() index %d out of range", i ); + tqWarning( "TQColorDialog::setStandardColor() index %d out of range", i ); #endif return; } |