summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-09 22:25:47 -0500
commiteaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch)
tree4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
parent79a9d7a46a20d4a0923bc06fc471fdc2176ef865 (diff)
downloadexperimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.tar.gz
experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqbuttongroup.cpp')
-rw-r--r--tqtinterface/qt4/src/widgets/tqbuttongroup.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp b/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
index 1879a8a..41da908 100644
--- a/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
+++ b/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
@@ -84,7 +84,7 @@
\endlist
A button can be removed from the group with remove(). A pointer to
- a button with a given id can be obtained using tqfind(). The id of a
+ a button with a given id can be obtained using find(). The id of a
button is available using id(). A button can be set \e on with
setButton(). The number of buttons in the group is returned by
count().
@@ -245,7 +245,7 @@ void TQButtonGroup::setExclusive( bool enable )
other negative integer, for instance -2, a unique identifier
(negative integer \<= -2) is generated. No button has an id of -1.
- \sa tqfind(), remove(), setExclusive()
+ \sa find(), remove(), setExclusive()
*/
int TQButtonGroup::insert( TQButton *button, int id )
@@ -319,7 +319,7 @@ void TQButtonGroup::remove( TQButton *button )
the button was not found.
*/
-TQButton *TQButtonGroup::tqfind( int id ) const
+TQButton *TQButtonGroup::find( int id ) const
{
// introduce a TQButtonListIt if calling anything
for ( TQButtonItem *i=buttons->first(); i; i=buttons->next() )
@@ -477,7 +477,7 @@ void TQButtonGroup::buttonToggled( bool on )
void TQButtonGroup::setButton( int id )
{
- TQButton * b = tqfind( id );
+ TQButton * b = find( id );
if ( b )
b->setOn( TRUE );
}