diff options
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqpushbutton.cpp')
-rw-r--r-- | tqtinterface/qt4/src/widgets/tqpushbutton.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqpushbutton.cpp b/tqtinterface/qt4/src/widgets/tqpushbutton.cpp index e8583ff..aecc6c7 100644 --- a/tqtinterface/qt4/src/widgets/tqpushbutton.cpp +++ b/tqtinterface/qt4/src/widgets/tqpushbutton.cpp @@ -169,7 +169,7 @@ may have a slightly larger size hint. This property's default is TRUE for buttons that have a TQDialog - tqparent; otherwise it defaults to FALSE. + parent; otherwise it defaults to FALSE. See the \l default property for details of how \l default and auto-default interact. @@ -274,24 +274,24 @@ public: /*! Constructs a push 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. */ -TQPushButton::TQPushButton( TQWidget *tqparent, const char *name ) - : TQButton( tqparent, name ) +TQPushButton::TQPushButton( TQWidget *parent, const char *name ) + : TQButton( parent, name ) { init(); } /*! - Constructs a push button called \a name with the tqparent \a tqparent + Constructs a push button called \a name with the parent \a parent and the text \a text. */ -TQPushButton::TQPushButton( const TQString &text, TQWidget *tqparent, +TQPushButton::TQPushButton( const TQString &text, TQWidget *parent, const char *name ) - : TQButton( tqparent, name ) + : TQButton( parent, name ) { init(); setText( text ); @@ -304,13 +304,13 @@ TQPushButton::TQPushButton( const TQString &text, TQWidget *tqparent, Note that you can also pass a TQPixmap object as an icon (thanks to the implicit type conversion provided by C++). - The \a tqparent and \a name arguments are sent to the TQWidget + The \a parent and \a name arguments are sent to the TQWidget constructor. */ #ifndef TQT_NO_ICONSET TQPushButton::TQPushButton( const TQIconSet& icon, const TQString &text, - TQWidget *tqparent, const char *name ) - : TQButton( tqparent, name ) + TQWidget *parent, const char *name ) + : TQButton( parent, name ) { init(); setText( text ); |