diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /plugins/src/accessible | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
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 baa4503..1bcc05a 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 ) - qWarning( "QAccessibleWidget::rect: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + tqWarning( "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 ) - qWarning( "QAccessibleWidget::navigate: This implementation does not support subelements! (ID %d unknown for %s)", startControl, widget()->className() ); + tqWarning( "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: - qWarning( "QAccessibleWidget::navigate: unhandled request" ); + tqWarning( "QAccessibleWidget::navigate: unhandled request" ); break; }; return -1; @@ -297,7 +297,7 @@ bool QAccessibleWidget::doDefaultAction( int control ) { #if defined(QT_DEBUG) if ( control ) - qWarning( "QAccessibleWidget::doDefaultAction: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + tqWarning( "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 ) - qWarning( "QAccessibleWidget::setFocus: This implementation does not support subelements! (ID %d unknown for %s)", control, widget()->className() ); + tqWarning( "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) - qWarning( "QAccessibleWidget::setSelected: This function not supported for simple widgets." ); + tqWarning( "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) - qWarning( "QAccessibleWidget::clearSelection: This function not supported for simple widgets." ); + tqWarning( "QAccessibleWidget::clearSelection: This function not supported for simple widgets." ); #endif } |