diff options
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 d911717c1..314a4f705 100644 --- a/src/widgets/qaction.cpp +++ b/src/widgets/qaction.cpp @@ -785,7 +785,7 @@ void TQAction::setAccel( const TQKeySequence& key ) } #if defined(QT_CHECK_STATE) else - qWarning( "TQAction::setAccel() (%s) requires widget in parent chain", name() ); + tqWarning( "TQAction::setAccel() (%s) requires widget in parent chain", name() ); #endif d->update(); } @@ -841,7 +841,7 @@ void TQAction::activate() { if ( isToggleAction() ) { #if defined(QT_CHECK_STATE) - qWarning( "TQAction::%s() (%s) Toggle actions " + tqWarning( "TQAction::%s() (%s) Toggle actions " "can not be activated", "activate", name() ); #endif return; @@ -858,7 +858,7 @@ void TQAction::toggle() { if ( !isToggleAction() ) { #if defined(QT_CHECK_STATE) - qWarning( "TQAction::%s() (%s) Only toggle actions " + tqWarning( "TQAction::%s() (%s) Only toggle actions " "can be switched", "toggle", name() ); #endif return; @@ -882,7 +882,7 @@ void TQAction::setOn( bool enable ) if ( !isToggleAction() ) { #if defined(QT_CHECK_STATE) if ( enable ) - qWarning( "TQAction::%s() (%s) Only toggle actions " + tqWarning( "TQAction::%s() (%s) Only toggle actions " "can be switched", "setOn", name() ); #endif return; @@ -1066,7 +1066,7 @@ bool TQAction::addTo( TQWidget* w ) d->update( TQActionPrivate::State | TQActionPrivate::EverythingElse ); } else { - qWarning( "TQAction::addTo(), unknown object" ); + tqWarning( "TQAction::addTo(), unknown object" ); return FALSE; } return TRUE; @@ -1226,7 +1226,7 @@ bool TQAction::removeFrom( TQWidget* w ) } } } else { - qWarning( "TQAction::removeFrom(), unknown object" ); + tqWarning( "TQAction::removeFrom(), unknown object" ); return FALSE; } return TRUE; |