summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/widgets/tqscrollbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/widgets/tqscrollbar.cpp')
-rw-r--r--experimental/tqtinterface/qt4/src/widgets/tqscrollbar.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/experimental/tqtinterface/qt4/src/widgets/tqscrollbar.cpp b/experimental/tqtinterface/qt4/src/widgets/tqscrollbar.cpp
index de8c74c8e..959ed28f3 100644
--- a/experimental/tqtinterface/qt4/src/widgets/tqscrollbar.cpp
+++ b/experimental/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 )
{