diff options
author | Michele Calgaro <[email protected]> | 2024-01-11 10:40:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-11 10:44:36 +0900 |
commit | ed7858de3a395180d6ec0c03d8358610b36938ea (patch) | |
tree | 1b81472d6cc0e957c603add6ab33814330e4afbe /kcron/ktvariable.cpp | |
parent | 41b29e64b5883035aba22b719c3174ed13d3a65a (diff) | |
download | tdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.tar.gz tdeadmin-ed7858de3a395180d6ec0c03d8358610b36938ea.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kcron/ktvariable.cpp')
-rw-r--r-- | kcron/ktvariable.cpp | 8 |
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() |