summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqbuttongroup.cpp')
-rw-r--r--tqtinterface/qt4/src/widgets/tqbuttongroup.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp b/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
index 41da908..31ff7a5 100644
--- a/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
+++ b/tqtinterface/qt4/src/widgets/tqbuttongroup.cpp
@@ -72,13 +72,13 @@
There are two ways of using a button group:
\list
- \i The button group is the tqparent widget of a number of buttons,
- i.e. the button group is the tqparent argument in the button
+ \i The button group is the parent widget of a number of buttons,
+ i.e. the button group is the parent argument in the button
constructor. The buttons are assigned identifiers 0, 1, 2, etc.,
in the order they are created. A TQButtonGroup can display a frame
and a title because it inherits TQGroupBox.
\i The button group is an invisible widget and the contained
- buttons have some other tqparent widget. In this usage, each button
+ buttons have some other parent widget. In this usage, each button
must be manually inserted, using insert(), into the button group
and given an identifier.
\endlist
@@ -132,12 +132,12 @@ typedef TQPtrListIterator<TQButtonItem> TQButtonListIt;
/*!
Constructs a button group with no title.
- The \a tqparent and \a name arguments are passed to the TQWidget
+ The \a parent and \a name arguments are passed to the TQWidget
constructor.
*/
-TQButtonGroup::TQButtonGroup( TQWidget *tqparent, const char *name )
- : TQGroupBox( tqparent, name )
+TQButtonGroup::TQButtonGroup( TQWidget *parent, const char *name )
+ : TQGroupBox( parent, name )
{
init();
}
@@ -145,13 +145,13 @@ TQButtonGroup::TQButtonGroup( TQWidget *tqparent, const char *name )
/*!
Constructs a button group with the title \a title.
- The \a tqparent and \a name arguments are passed to the TQWidget
+ The \a parent and \a name arguments are passed to the TQWidget
constructor.
*/
-TQButtonGroup::TQButtonGroup( const TQString &title, TQWidget *tqparent,
+TQButtonGroup::TQButtonGroup( const TQString &title, TQWidget *parent,
const char *name )
- : TQGroupBox( title, tqparent, name )
+ : TQGroupBox( title, parent, name )
{
init();
}
@@ -161,13 +161,13 @@ TQButtonGroup::TQButtonGroup( const TQString &title, TQWidget *tqparent,
arranged in \a strips rows or columns (depending on \a
orientation).
- The \a tqparent and \a name arguments are passed to the TQWidget
+ The \a parent and \a name arguments are passed to the TQWidget
constructor.
*/
TQButtonGroup::TQButtonGroup( int strips, Qt::Orientation orientation,
- TQWidget *tqparent, const char *name )
- : TQGroupBox( strips, orientation, tqparent, name )
+ TQWidget *parent, const char *name )
+ : TQGroupBox( strips, orientation, parent, name )
{
init();
}
@@ -177,14 +177,14 @@ TQButtonGroup::TQButtonGroup( int strips, Qt::Orientation orientation,
be arranged in \a strips rows or columns (depending on \a
orientation).
- The \a tqparent and \a name arguments are passed to the TQWidget
+ The \a parent and \a name arguments are passed to the TQWidget
constructor.
*/
TQButtonGroup::TQButtonGroup( int strips, Qt::Orientation orientation,
- const TQString &title, TQWidget *tqparent,
+ const TQString &title, TQWidget *parent,
const char *name )
- : TQGroupBox( strips, orientation, title, tqparent, name )
+ : TQGroupBox( strips, orientation, title, parent, name )
{
init();
}
@@ -232,11 +232,11 @@ void TQButtonGroup::setExclusive( bool enable )
group. Returns the button identifier.
Buttons are normally inserted into a button group automatically by
- passing the button group as the tqparent when the button is
+ passing the button group as the parent when the button is
constructed. So it is not necessary to manually insert buttons
- that have this button group as their tqparent widget. An exception
+ that have this button group as their parent widget. An exception
is when you want custom identifiers instead of the default 0, 1,
- 2, etc., or if you want the buttons to have some other tqparent.
+ 2, etc., or if you want the buttons to have some other parent.
The button is assigned the identifier \a id or an automatically
generated identifier. It works as follows: If \a id >= 0, this