diff options
Diffstat (limited to 'kalarm/lib/label.h')
-rw-r--r-- | kalarm/lib/label.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kalarm/lib/label.h b/kalarm/lib/label.h index bd0e39035..ba418aee8 100644 --- a/kalarm/lib/label.h +++ b/kalarm/lib/label.h @@ -45,29 +45,29 @@ class Label : public TQLabel friend class LabelFocusWidget; public: /** Constructs an empty label. - * @param tqparent The tqparent object of this widget. + * @param parent The parent object of this widget. * @param name The name of this widget. * @param f Flags. See TQWidget constructor for details. */ - explicit Label(TQWidget* tqparent, const char* name = 0, WFlags f = 0); + explicit Label(TQWidget* parent, const char* name = 0, WFlags f = 0); /** Constructs a label that displays @p text. * @param text Text string to display. - * @param tqparent The tqparent object of this widget. + * @param parent The parent object of this widget. * @param name The name of this widget. * @param f Flags. See TQWidget constructor for details. */ - Label(const TQString& text, TQWidget* tqparent, const char* name = 0, WFlags f = 0); + Label(const TQString& text, TQWidget* parent, const char* name = 0, WFlags f = 0); /** Constructs a label, with a buddy widget, that displays @p text. * @param buddy Buddy widget which receives the keyboard focus when the * label's accelerator key is pressed. If @p buddy is a radio * button, @p buddy is in addition selected when the * accelerator key is pressed. * @param text Text string to display. - * @param tqparent The tqparent object of this widget. + * @param parent The parent object of this widget. * @param name The name of this widget. * @param f Flags. See TQWidget constructor for details. */ - Label(TQWidget* buddy, const TQString& text, TQWidget* tqparent, const char* name = 0, WFlags f = 0); + Label(TQWidget* buddy, const TQString& text, TQWidget* parent, const char* name = 0, WFlags f = 0); /** Sets the label's buddy widget which receives the keyboard focus when the * label's accelerator key is pressed. If @p buddy is a radio button, * @p buddy is in addition selected when the accelerator key is pressed. @@ -90,7 +90,7 @@ class LabelFocusWidget : public TQWidget Q_OBJECT TQ_OBJECT public: - LabelFocusWidget(TQWidget* tqparent, const char* name = 0); + LabelFocusWidget(TQWidget* parent, const char* name = 0); protected: virtual void focusInEvent(TQFocusEvent*); }; |