summaryrefslogtreecommitdiffstats
path: root/src/widgets/qaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/qaction.cpp')
-rw-r--r--src/widgets/qaction.cpp12
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;