diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/widgets/qaction.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
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 7db8c1e..1e68de0 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 - tqWarning( "QAction::setAccel() (%s) requires widget in parent chain", name() ); + qWarning( "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) - tqWarning( "QAction::%s() (%s) Toggle actions " + qWarning( "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) - tqWarning( "QAction::%s() (%s) Only toggle actions " + qWarning( "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 ) - tqWarning( "QAction::%s() (%s) Only toggle actions " + qWarning( "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 { - tqWarning( "QAction::addTo(), unknown object" ); + qWarning( "QAction::addTo(), unknown object" ); return FALSE; } return TRUE; @@ -1226,7 +1226,7 @@ bool QAction::removeFrom( QWidget* w ) } } } else { - tqWarning( "QAction::removeFrom(), unknown object" ); + qWarning( "QAction::removeFrom(), unknown object" ); return FALSE; } return TRUE; |