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/src/widgets/tqbuttongroup.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/src/widgets/tqbuttongroup.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqbuttongroup.cpp | 36 |
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 |