summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/widgets/tqpushbutton.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-10 12:13:27 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-10 12:13:27 -0500
commitd296f1d337dabfeae5191955fdadb874965dbbe9 (patch)
tree1a4b3b4cca01f2ea77eee2497297219d60e9bbd4 /tqtinterface/qt4/src/widgets/tqpushbutton.cpp
parenteaa7ee2e0bbca40ba3173c4304f81957e8964291 (diff)
downloadexperimental-d296f1d337dabfeae5191955fdadb874965dbbe9.tar.gz
experimental-d296f1d337dabfeae5191955fdadb874965dbbe9.zip
rename the following methods:
tqparent parent tqmask mask
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqpushbutton.cpp')
-rw-r--r--tqtinterface/qt4/src/widgets/tqpushbutton.cpp20
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 );