diff options
Diffstat (limited to 'plugins/src/accessible/widgets/qaccessiblewidget.cpp')
-rw-r--r-- | plugins/src/accessible/widgets/qaccessiblewidget.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/src/accessible/widgets/qaccessiblewidget.cpp b/plugins/src/accessible/widgets/qaccessiblewidget.cpp index 1bcc05a..baa4503 100644 --- a/plugins/src/accessible/widgets/qaccessiblewidget.cpp +++ b/plugins/src/accessible/widgets/qaccessiblewidget.cpp @@ -164,7 +164,7 @@ QRect QAccessibleWidget::rect( int control ) const { #if defined(QT_DEBUG) if ( control ) - tqWarning( "QAccessibleWidget::rect: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + qWarning( "QAccessibleWidget::rect: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); #else Q_UNUSED(control) #endif @@ -179,7 +179,7 @@ int QAccessibleWidget::navigate( NavDirection dir, int startControl ) const { #if defined(QT_DEBUG) if ( startControl ) - tqWarning( "QAccessibleWidget::navigate: This implementation does not support subelements! (ID %d unknown for %s)", startControl, widget()->className() ); + qWarning( "QAccessibleWidget::navigate: This implementation does not support subelements! (ID %d unknown for %s)", startControl, widget()->className() ); #else Q_UNUSED(startControl); #endif @@ -249,7 +249,7 @@ int QAccessibleWidget::navigate( NavDirection dir, int startControl ) const return ( index != -1 ) ? index+1 : -1; } default: - tqWarning( "QAccessibleWidget::navigate: unhandled request" ); + qWarning( "QAccessibleWidget::navigate: unhandled request" ); break; }; return -1; @@ -297,7 +297,7 @@ bool QAccessibleWidget::doDefaultAction( int control ) { #if defined(QT_DEBUG) if ( control ) - tqWarning( "QAccessibleWidget::doDefaultAction: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + qWarning( "QAccessibleWidget::doDefaultAction: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); #else Q_UNUSED(control) #endif @@ -407,7 +407,7 @@ bool QAccessibleWidget::setFocus( int control ) { #if defined(QT_DEBUG) if ( control ) - tqWarning( "QAccessibleWidget::setFocus: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + qWarning( "QAccessibleWidget::setFocus: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); #else Q_UNUSED(control) #endif @@ -422,7 +422,7 @@ bool QAccessibleWidget::setFocus( int control ) bool QAccessibleWidget::setSelected( int, bool, bool ) { #if defined(QT_DEBUG) - tqWarning( "QAccessibleWidget::setSelected: This function not supported for simple widgets." ); + qWarning( "QAccessibleWidget::setSelected: This function not supported for simple widgets." ); #endif return FALSE; } @@ -431,7 +431,7 @@ bool QAccessibleWidget::setSelected( int, bool, bool ) void QAccessibleWidget::clearSelection() { #if defined(QT_DEBUG) - tqWarning( "QAccessibleWidget::clearSelection: This function not supported for simple widgets." ); + qWarning( "QAccessibleWidget::clearSelection: This function not supported for simple widgets." ); #endif } |