diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /plugins/src/accessible | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
Diffstat (limited to 'plugins/src/accessible')
-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 fe27f8091..b40debbe7 100644 --- a/plugins/src/accessible/widgets/qaccessiblewidget.cpp +++ b/plugins/src/accessible/widgets/qaccessiblewidget.cpp @@ -164,7 +164,7 @@ TQRect TQAccessibleWidget::rect( int control ) const { #if defined(QT_DEBUG) if ( control ) - qWarning( "TQAccessibleWidget::rect: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + tqWarning( "TQAccessibleWidget::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 TQAccessibleWidget::navigate( NavDirection dir, int startControl ) const { #if defined(QT_DEBUG) if ( startControl ) - qWarning( "TQAccessibleWidget::navigate: This implementation does not support subelements! (ID %d unknown for %s)", startControl, widget()->className() ); + tqWarning( "TQAccessibleWidget::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 TQAccessibleWidget::navigate( NavDirection dir, int startControl ) const return ( index != -1 ) ? index+1 : -1; } default: - qWarning( "TQAccessibleWidget::navigate: unhandled request" ); + tqWarning( "TQAccessibleWidget::navigate: unhandled request" ); break; }; return -1; @@ -297,7 +297,7 @@ bool TQAccessibleWidget::doDefaultAction( int control ) { #if defined(QT_DEBUG) if ( control ) - qWarning( "TQAccessibleWidget::doDefaultAction: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + tqWarning( "TQAccessibleWidget::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 TQAccessibleWidget::setFocus( int control ) { #if defined(QT_DEBUG) if ( control ) - qWarning( "TQAccessibleWidget::setFocus: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + tqWarning( "TQAccessibleWidget::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 TQAccessibleWidget::setFocus( int control ) bool TQAccessibleWidget::setSelected( int, bool, bool ) { #if defined(QT_DEBUG) - qWarning( "TQAccessibleWidget::setSelected: This function not supported for simple widgets." ); + tqWarning( "TQAccessibleWidget::setSelected: This function not supported for simple widgets." ); #endif return FALSE; } @@ -431,7 +431,7 @@ bool TQAccessibleWidget::setSelected( int, bool, bool ) void TQAccessibleWidget::clearSelection() { #if defined(QT_DEBUG) - qWarning( "TQAccessibleWidget::clearSelection: This function not supported for simple widgets." ); + tqWarning( "TQAccessibleWidget::clearSelection: This function not supported for simple widgets." ); #endif } |