summaryrefslogtreecommitdiffstats
path: root/kcron/ktvariable.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:40:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:44:36 +0900
commited7858de3a395180d6ec0c03d8358610b36938ea (patch)
tree1b81472d6cc0e957c603add6ab33814330e4afbe /kcron/ktvariable.cpp
parent41b29e64b5883035aba22b719c3174ed13d3a65a (diff)
downloadtdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.tar.gz
tdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kcron/ktvariable.cpp')
-rw-r--r--kcron/ktvariable.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kcron/ktvariable.cpp b/kcron/ktvariable.cpp
index 34b35ee..65628cb 100644
--- a/kcron/ktvariable.cpp
+++ b/kcron/ktvariable.cpp
@@ -87,10 +87,10 @@ KTVariable::KTVariable(CTVariable* _ctvar,const TQString &_caption) :
cmbVariable->setFocus();
// connect them up
- connect(cmbVariable,TQT_SIGNAL(highlighted(const TQString&)),
- TQT_SLOT(slotVariableChanged()));
- connect(cmbVariable,TQT_SIGNAL(activated(const TQString&)),
- TQT_SLOT(slotVariableChanged()));
+ connect(cmbVariable,TQ_SIGNAL(highlighted(const TQString&)),
+ TQ_SLOT(slotVariableChanged()));
+ connect(cmbVariable,TQ_SIGNAL(activated(const TQString&)),
+ TQ_SLOT(slotVariableChanged()));
}
KTVariable::~KTVariable()