diff options
Diffstat (limited to 'kalarm/specialactions.cpp')
-rw-r--r-- | kalarm/specialactions.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kalarm/specialactions.cpp b/kalarm/specialactions.cpp index fabff6edd..919524aff 100644 --- a/kalarm/specialactions.cpp +++ b/kalarm/specialactions.cpp @@ -40,8 +40,8 @@ = Button to display the Special Alarm Actions dialogue. =============================================================================*/ -SpecialActionsButton::SpecialActionsButton(const TQString& caption, TQWidget* parent, const char* name) - : TQPushButton(caption, parent, name), +SpecialActionsButton::SpecialActionsButton(const TQString& caption, TQWidget* tqparent, const char* name) + : TQPushButton(caption, tqparent, name), mReadOnly(false) { setToggleButton(true); @@ -90,8 +90,8 @@ static const char SPEC_ACT_DIALOG_NAME[] = "SpecialActionsDialog"; SpecialActionsDlg::SpecialActionsDlg(const TQString& preAction, const TQString& postAction, - const TQString& caption, TQWidget* parent, const char* name) - : KDialogBase(parent, name, true, caption, Ok|Cancel, Ok, false) + const TQString& caption, TQWidget* tqparent, const char* name) + : KDialogBase(tqparent, name, true, caption, Ok|Cancel, Ok, false) { TQWidget* page = new TQWidget(this); setMainWidget(page); @@ -134,8 +134,8 @@ void SpecialActionsDlg::resizeEvent(TQResizeEvent* re) = Pre- and post-alarm actions widget. =============================================================================*/ -SpecialActions::SpecialActions(TQWidget* parent, const char* name) - : TQWidget(parent, name), +SpecialActions::SpecialActions(TQWidget* tqparent, const char* name) + : TQWidget(tqparent, name), mReadOnly(false) { TQBoxLayout* topLayout = new TQVBoxLayout(this, 0, KDialog::spacingHint()); @@ -143,7 +143,7 @@ SpecialActions::SpecialActions(TQWidget* parent, const char* name) // Pre-alarm action TQLabel* label = new TQLabel(i18n("Pre-a&larm action:"), this); label->setFixedSize(label->tqsizeHint()); - topLayout->addWidget(label, 0, Qt::AlignAuto); + topLayout->addWidget(label, 0, TQt::AlignAuto); mPreAction = new KLineEdit(this); label->setBuddy(mPreAction); @@ -157,7 +157,7 @@ SpecialActions::SpecialActions(TQWidget* parent, const char* name) // Post-alarm action label = new TQLabel(i18n("Post-alar&m action:"), this); label->setFixedSize(label->tqsizeHint()); - topLayout->addWidget(label, 0, Qt::AlignAuto); + topLayout->addWidget(label, 0, TQt::AlignAuto); mPostAction = new KLineEdit(this); label->setBuddy(mPostAction); |