summaryrefslogtreecommitdiffstats
path: root/ksysv/Properties.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksysv/Properties.cpp')
-rw-r--r--ksysv/Properties.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/ksysv/Properties.cpp b/ksysv/Properties.cpp
index 96e0ebf..dd5fccd 100644
--- a/ksysv/Properties.cpp
+++ b/ksysv/Properties.cpp
@@ -56,19 +56,19 @@ KSVServicesPage::KSVServicesPage (KSVData& data, KPropertiesDialog* props)
TQButtonGroup* buttons = new TQButtonGroup (1,TQt::Vertical, i18n ("Actions"), mPage);
TQPushButton* b = new TQPushButton (i18n ("&Edit"), buttons);
- connect (b, TQT_SIGNAL (clicked()), props, TQT_SLOT (doEdit()));
+ connect (b, TQ_SIGNAL (clicked()), props, TQ_SLOT (doEdit()));
TQFrame* spacer = new TQFrame (buttons);
spacer->setMinimumWidth (KDialog::spacingHint());
b = new TQPushButton (i18n ("&Start"), buttons);
- connect (b, TQT_SIGNAL (clicked()), props, TQT_SLOT (doStart()));
+ connect (b, TQ_SIGNAL (clicked()), props, TQ_SLOT (doStart()));
b = new TQPushButton (i18n ("S&top"), buttons);
- connect (b, TQT_SIGNAL (clicked()), props, TQT_SLOT (doStop()));
+ connect (b, TQ_SIGNAL (clicked()), props, TQ_SLOT (doStop()));
b = new TQPushButton (i18n ("&Restart"), buttons);
- connect (b, TQT_SIGNAL (clicked()), props, TQT_SLOT (doRestart()));
+ connect (b, TQ_SIGNAL (clicked()), props, TQ_SLOT (doRestart()));
}
KSVServicesPage::~KSVServicesPage ()
@@ -150,12 +150,12 @@ KSVEntryPage::KSVEntryPage (KSVData& data, KPropertiesDialog* props)
top->addWidget (mNumberEdit, 2, 1);
top->addWidget (iconLabel, 3, 0);
- connect (mServiceEdit, TQT_SIGNAL (textChanged (const TQString&)),
- this, TQT_SLOT (emitChanged()));
- connect (mLabelEdit, TQT_SIGNAL (textChanged (const TQString&)),
- this, TQT_SLOT (emitChanged()));
- connect (mNumberEdit, TQT_SIGNAL (valueChanged (int)),
- this, TQT_SLOT (emitChanged()));
+ connect (mServiceEdit, TQ_SIGNAL (textChanged (const TQString&)),
+ this, TQ_SLOT (emitChanged()));
+ connect (mLabelEdit, TQ_SIGNAL (textChanged (const TQString&)),
+ this, TQ_SLOT (emitChanged()));
+ connect (mNumberEdit, TQ_SIGNAL (valueChanged (int)),
+ this, TQ_SLOT (emitChanged()));
}
KSVEntryPage::~KSVEntryPage ()