From d296f1d337dabfeae5191955fdadb874965dbbe9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 10 Aug 2011 12:13:27 -0500 Subject: rename the following methods: tqparent parent tqmask mask --- .../qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp') diff --git a/tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp b/tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp index 224ee09..2755949 100644 --- a/tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp +++ b/tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp @@ -32,8 +32,8 @@ TQString buddyString( TQWidget *widget ) { - TQWidget *tqparent = widget->parentWidget(); - TQObjectList *ol = tqparent->queryList( "TQLabel", 0, FALSE, FALSE ); + TQWidget *parent = widget->parentWidget(); + TQObjectList *ol = parent->queryList( "TQLabel", 0, FALSE, FALSE ); if ( !ol || !ol->count() ) { delete ol; return TQString::null; @@ -54,8 +54,8 @@ TQString buddyString( TQWidget *widget ) if ( !!str ) return str; - if ( tqparent->inherits( "TQGroupBox" ) ) - return ((TQGroupBox*)tqparent)->title(); + if ( parent->inherits( "TQGroupBox" ) ) + return ((TQGroupBox*)parent)->title(); return TQString::null; } @@ -202,8 +202,8 @@ int TQAccessibleWidget::navigate( NavDirection dir, int startControl ) const case NavNext: case NavPrevious: { - TQWidget *tqparent = w->parentWidget(); - TQObjectList *sl = tqparent ? tqparent->queryList( "TQWidget", 0, FALSE, FALSE ) : 0; + TQWidget *parent = w->parentWidget(); + TQObjectList *sl = parent ? parent->queryList( "TQWidget", 0, FALSE, FALSE ) : 0; if ( !sl ) return -1; TQObject *sib; -- cgit v1.2.1