diff options
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqhgroupbox.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqhgroupbox.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqhgroupbox.cpp b/tqtinterface/qt4/src/widgets/tqhgroupbox.cpp index 2bac06c..37765df 100644 --- a/tqtinterface/qt4/src/widgets/tqhgroupbox.cpp +++ b/tqtinterface/qt4/src/widgets/tqhgroupbox.cpp @@ -63,24 +63,24 @@ /*! Constructs a horizontal group box 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. */ -TQHGroupBox::TQHGroupBox( TQWidget *tqparent, const char *name ) - : TQGroupBox( 1, Qt::Vertical /* sic! */, tqparent, name ) +TQHGroupBox::TQHGroupBox( TQWidget *parent, const char *name ) + : TQGroupBox( 1, Qt::Vertical /* sic! */, parent, name ) { } /*! Constructs a horizontal group box 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. */ -TQHGroupBox::TQHGroupBox( const TQString &title, TQWidget *tqparent, +TQHGroupBox::TQHGroupBox( const TQString &title, TQWidget *parent, const char *name ) - : TQGroupBox( 1, Qt::Vertical /* sic! */, title, tqparent, name ) + : TQGroupBox( 1, Qt::Vertical /* sic! */, title, parent, name ) { } |