diff options
author | Timothy Pearson <[email protected]> | 2011-08-10 12:13:27 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-08-10 12:13:27 -0500 |
commit | d296f1d337dabfeae5191955fdadb874965dbbe9 (patch) | |
tree | 1a4b3b4cca01f2ea77eee2497297219d60e9bbd4 /tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp | |
parent | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (diff) | |
download | experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.tar.gz experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.zip |
rename the following methods:
tqparent parent
tqmask mask
Diffstat (limited to 'tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp')
-rw-r--r-- | tqtinterface/qt4/plugins/src/accessible/widgets/qaccessiblewidget.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
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; |