diff options
Diffstat (limited to 'chalk/ui/kis_int_spinbox.h')
-rw-r--r-- | chalk/ui/kis_int_spinbox.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chalk/ui/kis_int_spinbox.h b/chalk/ui/kis_int_spinbox.h index a5c4602e0..469de0997 100644 --- a/chalk/ui/kis_int_spinbox.h +++ b/chalk/ui/kis_int_spinbox.h @@ -38,8 +38,8 @@ class KisPopupSlider : public TQPopupMenu { public: - KisPopupSlider(int minValue, int maxValue, int pageStep, int value, Qt::Orientation orientation, TQWidget * tqparent, const char * name = 0) - : TQPopupMenu(tqparent, name) + KisPopupSlider(int minValue, int maxValue, int pageStep, int value, Qt::Orientation orientation, TQWidget * parent, const char * name = 0) + : TQPopupMenu(parent, name) { m_slider = new TQSlider(minValue, maxValue, pageStep, value, orientation, this, name); //m_slider->setTracking(false); @@ -86,10 +86,10 @@ public: * Constructs an input control for integer values * with base 10 and initial value 0. * - * @param tqparent tqparent TQWidget + * @param parent parent TQWidget * @param name internal name for this widget */ - KisIntSpinbox(TQWidget *tqparent=0, const char *name=0); + KisIntSpinbox(TQWidget *parent=0, const char *name=0); /** * Constructor * It constructs a TQSpinBox that allows the input of integer numbers @@ -98,10 +98,10 @@ public: * * @param label the tabel (may contain &, and my be empty) * @param value initial value for the control - * @param tqparent tqparent TQWidget + * @param parent parent TQWidget * @param name internal name for this widget */ - KisIntSpinbox(const TQString & label, int value, TQWidget* tqparent=0, const char *name=0); + KisIntSpinbox(const TQString & label, int value, TQWidget* parent=0, const char *name=0); /** * Destructor |