diff options
Diffstat (limited to 'kalarm/lib/spinbox2private.h')
-rw-r--r-- | kalarm/lib/spinbox2private.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kalarm/lib/spinbox2private.h b/kalarm/lib/spinbox2private.h index 1c5a71ee6..c1c116b04 100644 --- a/kalarm/lib/spinbox2private.h +++ b/kalarm/lib/spinbox2private.h @@ -36,10 +36,10 @@ class ExtraSpinBox : public SpinBox Q_OBJECT TQ_OBJECT public: - explicit ExtraSpinBox(TQWidget* tqparent, const char* name = 0) - : SpinBox(tqparent, name), mNewStylePending(false) { } - ExtraSpinBox(int minValue, int maxValue, int step, TQWidget* tqparent, const char* name = 0) - : SpinBox(minValue, maxValue, step, tqparent, name), mNewStylePending(false) { } + explicit ExtraSpinBox(TQWidget* parent, const char* name = 0) + : SpinBox(parent, name), mNewStylePending(false) { } + ExtraSpinBox(int minValue, int maxValue, int step, TQWidget* parent, const char* name = 0) + : SpinBox(minValue, maxValue, step, parent, name), mNewStylePending(false) { } signals: void styleUpdated(); protected: @@ -63,7 +63,7 @@ class SpinMirror : public TQCanvasView Q_OBJECT TQ_OBJECT public: - explicit SpinMirror(SpinBox*, TQFrame* spinFrame, TQWidget* tqparent = 0, const char* name = 0); + explicit SpinMirror(SpinBox*, TQFrame* spinFrame, TQWidget* parent = 0, const char* name = 0); void setReadOnly(bool ro) { mReadOnly = ro; } bool isReadOnly() const { return mReadOnly; } void setNormalButtons(const TQPixmap&); |