diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /src/widgets/qaction.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/widgets/qaction.cpp')
-rw-r--r-- | src/widgets/qaction.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/widgets/qaction.cpp b/src/widgets/qaction.cpp index 1e68de0..7db8c1e 100644 --- a/src/widgets/qaction.cpp +++ b/src/widgets/qaction.cpp @@ -785,7 +785,7 @@ void QAction::setAccel( const QKeySequence& key ) } #if defined(QT_CHECK_STATE) else - qWarning( "QAction::setAccel() (%s) requires widget in parent chain", name() ); + tqWarning( "QAction::setAccel() (%s) requires widget in parent chain", name() ); #endif d->update(); } @@ -841,7 +841,7 @@ void QAction::activate() { if ( isToggleAction() ) { #if defined(QT_CHECK_STATE) - qWarning( "QAction::%s() (%s) Toggle actions " + tqWarning( "QAction::%s() (%s) Toggle actions " "can not be activated", "activate", name() ); #endif return; @@ -858,7 +858,7 @@ void QAction::toggle() { if ( !isToggleAction() ) { #if defined(QT_CHECK_STATE) - qWarning( "QAction::%s() (%s) Only toggle actions " + tqWarning( "QAction::%s() (%s) Only toggle actions " "can be switched", "toggle", name() ); #endif return; @@ -882,7 +882,7 @@ void QAction::setOn( bool enable ) if ( !isToggleAction() ) { #if defined(QT_CHECK_STATE) if ( enable ) - qWarning( "QAction::%s() (%s) Only toggle actions " + tqWarning( "QAction::%s() (%s) Only toggle actions " "can be switched", "setOn", name() ); #endif return; @@ -1066,7 +1066,7 @@ bool QAction::addTo( QWidget* w ) d->update( QActionPrivate::State | QActionPrivate::EverythingElse ); } else { - qWarning( "QAction::addTo(), unknown object" ); + tqWarning( "QAction::addTo(), unknown object" ); return FALSE; } return TRUE; @@ -1226,7 +1226,7 @@ bool QAction::removeFrom( QWidget* w ) } } } else { - qWarning( "QAction::removeFrom(), unknown object" ); + tqWarning( "QAction::removeFrom(), unknown object" ); return FALSE; } return TRUE; |