summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/widgets/tqscrollbar.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/tqscrollbar.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/tqscrollbar.cpp')
-rw-r--r--tqtinterface/qt4/src/widgets/tqscrollbar.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqscrollbar.cpp b/tqtinterface/qt4/src/widgets/tqscrollbar.cpp
index de8c74c..959ed28 100644
--- a/tqtinterface/qt4/src/widgets/tqscrollbar.cpp
+++ b/tqtinterface/qt4/src/widgets/tqscrollbar.cpp
@@ -220,7 +220,7 @@ static const int repeatTime = 50;
/*!
Constructs a vertical scroll bar.
- 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.
The \c minValue defaults to 0, the \c maxValue to 99, with a \c
@@ -228,8 +228,8 @@ static const int repeatTime = 50;
\c value of 0.
*/
-TQScrollBar::TQScrollBar( TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name ), orient( Qt::Vertical )
+TQScrollBar::TQScrollBar( TQWidget *parent, const char *name )
+ : TQWidget( parent, name ), orient( Qt::Vertical )
{
init();
}
@@ -239,7 +239,7 @@ TQScrollBar::TQScrollBar( TQWidget *tqparent, const char *name )
The \a orientation must be \c Qt::Vertical or \c Qt::Horizontal.
- 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.
The \c minValue defaults to 0, the \c maxValue to 99, with a \c
@@ -247,9 +247,9 @@ TQScrollBar::TQScrollBar( TQWidget *tqparent, const char *name )
\c value of 0.
*/
-TQScrollBar::TQScrollBar( Qt::Orientation orientation, TQWidget *tqparent,
+TQScrollBar::TQScrollBar( Qt::Orientation orientation, TQWidget *parent,
const char *name )
- : TQWidget( tqparent, name ), orient( orientation )
+ : TQWidget( parent, name ), orient( orientation )
{
init();
}
@@ -264,14 +264,14 @@ TQScrollBar::TQScrollBar( Qt::Orientation orientation, TQWidget *tqparent,
If \a orientation is \c Vertical the scroll bar is vertical and if
it is \c Horizontal the scroll bar is horizontal.
- 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.
*/
TQScrollBar::TQScrollBar( int minValue, int maxValue, int lineStep, int pageStep,
int value, Qt::Orientation orientation,
- TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name ),
+ TQWidget *parent, const char *name )
+ : TQWidget( parent, name ),
TQRangeControl( minValue, maxValue, lineStep, pageStep, value ),
orient( orientation )
{