diff options
Diffstat (limited to 'kalarm/lib/checkbox.cpp')
-rw-r--r-- | kalarm/lib/checkbox.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kalarm/lib/checkbox.cpp b/kalarm/lib/checkbox.cpp index b5bfde0ee..d6b02373c 100644 --- a/kalarm/lib/checkbox.cpp +++ b/kalarm/lib/checkbox.cpp @@ -21,15 +21,15 @@ #include "checkbox.moc" -CheckBox::CheckBox(TQWidget* tqparent, const char* name) - : TQCheckBox(tqparent, name), +CheckBox::CheckBox(TQWidget* parent, const char* name) + : TQCheckBox(parent, name), mFocusPolicy(focusPolicy()), mFocusWidget(0), mReadOnly(false) { } -CheckBox::CheckBox(const TQString& text, TQWidget* tqparent, const char* name) - : TQCheckBox(text, tqparent, name), +CheckBox::CheckBox(const TQString& text, TQWidget* parent, const char* name) + : TQCheckBox(text, parent, name), mFocusPolicy(focusPolicy()), mFocusWidget(0), mReadOnly(false) |