diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:32:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:18:51 +0900 |
commit | 7825473df272b5d0fe2ff7a87910ed06865bfc67 (patch) | |
tree | 2a80dba861658d2d64b12c24318c43787c09b721 /src/ksimulator.cpp | |
parent | bb32ffafc904de3a070c8132721ac19bea77da4a (diff) | |
download | kpicosim-7825473df272b5d0fe2ff7a87910ed06865bfc67.tar.gz kpicosim-7825473df272b5d0fe2ff7a87910ed06865bfc67.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 07106c0a34f021d33eecae6571f0a67c990081bd)
Diffstat (limited to 'src/ksimulator.cpp')
-rw-r--r-- | src/ksimulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ksimulator.cpp b/src/ksimulator.cpp index a76b206..6dd8a84 100644 --- a/src/ksimulator.cpp +++ b/src/ksimulator.cpp @@ -31,7 +31,7 @@ KSimulator::KSimulator(TQObject *parent, const char *name ) m_timer->stop() ; m_run = false ; - connect( m_timer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( next() ) ) ; + connect( m_timer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( next() ) ) ; } KSimulator::~KSimulator() |