diff options
Diffstat (limited to 'karm/ktimewidget.cpp')
-rw-r--r-- | karm/ktimewidget.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/karm/ktimewidget.cpp b/karm/ktimewidget.cpp index e480dea40..2eaf32b20 100644 --- a/karm/ktimewidget.cpp +++ b/karm/ktimewidget.cpp @@ -16,8 +16,8 @@ enum ValidatorType { HOUR, MINUTE }; class TimeValidator : public TQValidator { public: - TimeValidator( ValidatorType tp, TQWidget *tqparent=0, const char *name=0) - : TQValidator(TQT_TQOBJECT(tqparent), name) + TimeValidator( ValidatorType tp, TQWidget *parent=0, const char *name=0) + : TQValidator(TQT_TQOBJECT(parent), name) { _tp = tp; } @@ -46,8 +46,8 @@ class KarmLineEdit : public TQLineEdit { public: - KarmLineEdit( TQWidget* tqparent, const char* name = 0 ) - : TQLineEdit( tqparent, name ) {} + KarmLineEdit( TQWidget* parent, const char* name = 0 ) + : TQLineEdit( parent, name ) {} protected: @@ -60,8 +60,8 @@ protected: }; -KArmTimeWidget::KArmTimeWidget( TQWidget* tqparent, const char* name ) - : TQWidget(tqparent, name) +KArmTimeWidget::KArmTimeWidget( TQWidget* parent, const char* name ) + : TQWidget(parent, name) { TQHBoxLayout *tqlayout = new TQHBoxLayout(this); |