summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/widgets/tqradiobutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/widgets/tqradiobutton.cpp')
-rw-r--r--experimental/tqtinterface/qt4/src/widgets/tqradiobutton.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/experimental/tqtinterface/qt4/src/widgets/tqradiobutton.cpp b/experimental/tqtinterface/qt4/src/widgets/tqradiobutton.cpp
index 13ca86671..1c24676ed 100644
--- a/experimental/tqtinterface/qt4/src/widgets/tqradiobutton.cpp
+++ b/experimental/tqtinterface/qt4/src/widgets/tqradiobutton.cpp
@@ -104,12 +104,12 @@
/*!
Constructs a radio button with no text.
- The \a tqparent and \a name arguments are sent on to the TQWidget
+ The \a parent and \a name arguments are sent on to the TQWidget
constructor.
*/
-TQRadioButton::TQRadioButton( TQWidget *tqparent, const char *name )
- : TQButton( tqparent, name, TQt::WNoAutoErase | TQt::WMouseNoMask )
+TQRadioButton::TQRadioButton( TQWidget *parent, const char *name )
+ : TQButton( parent, name, TQt::WNoAutoErase | TQt::WMouseNoMask )
{
init();
}
@@ -117,13 +117,13 @@ TQRadioButton::TQRadioButton( TQWidget *tqparent, const char *name )
/*!
Constructs a radio button with the text \a text.
- The \a tqparent and \a name arguments are sent on to the TQWidget
+ The \a parent and \a name arguments are sent on to the TQWidget
constructor.
*/
-TQRadioButton::TQRadioButton( const TQString &text, TQWidget *tqparent,
+TQRadioButton::TQRadioButton( const TQString &text, TQWidget *parent,
const char *name )
- : TQButton( tqparent, name, TQt::WNoAutoErase | TQt::WMouseNoMask )
+ : TQButton( parent, name, TQt::WNoAutoErase | TQt::WMouseNoMask )
{
init();
setText( text );