diff options
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqbuttongroup.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqbuttongroup.cpp | 8 |
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 ); } |