diff options
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqhbuttongroup.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqhbuttongroup.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqhbuttongroup.cpp b/tqtinterface/qt4/src/widgets/tqhbuttongroup.cpp index 29af0a9..3f02794 100644 --- a/tqtinterface/qt4/src/widgets/tqhbuttongroup.cpp +++ b/tqtinterface/qt4/src/widgets/tqhbuttongroup.cpp @@ -64,24 +64,24 @@ /*! Constructs a horizontal 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. */ -TQHButtonGroup::TQHButtonGroup( TQWidget *tqparent, const char *name ) - : TQButtonGroup( 1, Qt::Vertical /* sic! */, tqparent, name ) +TQHButtonGroup::TQHButtonGroup( TQWidget *parent, const char *name ) + : TQButtonGroup( 1, Qt::Vertical /* sic! */, parent, name ) { } /*! Constructs a horizontal 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. */ -TQHButtonGroup::TQHButtonGroup( const TQString &title, TQWidget *tqparent, +TQHButtonGroup::TQHButtonGroup( const TQString &title, TQWidget *parent, const char *name ) - : TQButtonGroup( 1, Qt::Vertical /* sic! */, title, tqparent, name ) + : TQButtonGroup( 1, Qt::Vertical /* sic! */, title, parent, name ) { } |