summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/pspinbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/widgets/propeditor/pspinbox.cpp')
-rw-r--r--lib/widgets/propeditor/pspinbox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/widgets/propeditor/pspinbox.cpp b/lib/widgets/propeditor/pspinbox.cpp
index 48b36324..e9c25325 100644
--- a/lib/widgets/propeditor/pspinbox.cpp
+++ b/lib/widgets/propeditor/pspinbox.cpp
@@ -26,8 +26,8 @@
namespace PropertyLib{
-PSpinBox::PSpinBox(MultiProperty *property, TQWidget *tqparent, const char *name)
- :PropertyWidget(property, tqparent, name)
+PSpinBox::PSpinBox(MultiProperty *property, TQWidget *parent, const char *name)
+ :PropertyWidget(property, parent, name)
{
TQHBoxLayout *l = new TQHBoxLayout(this, 0, 0);
m_edit = new TQSpinBox(INT_MIN, INT_MAX, 1, this);
@@ -37,8 +37,8 @@ PSpinBox::PSpinBox(MultiProperty *property, TQWidget *tqparent, const char *name
connect(m_edit, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(updateProperty(int)));
}
-PSpinBox::PSpinBox(MultiProperty *property, int minValue, int maxValue, int step, TQWidget *tqparent, const char *name)
- :PropertyWidget(property, tqparent, name)
+PSpinBox::PSpinBox(MultiProperty *property, int minValue, int maxValue, int step, TQWidget *parent, const char *name)
+ :PropertyWidget(property, parent, name)
{
TQHBoxLayout *l = new TQHBoxLayout(this, 0, 0);
m_edit = new TQSpinBox(minValue, maxValue, step, this);