From 4bff0b57c61dcee5074d6dc0c02d7f61eeb7202d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 29 Dec 2023 16:35:31 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 671d0469ada4df2d833d41d065793a06f4d87a65) --- src/simulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/simulator.cpp') diff --git a/src/simulator.cpp b/src/simulator.cpp index fda2e3c..48c6681 100644 --- a/src/simulator.cpp +++ b/src/simulator.cpp @@ -57,7 +57,7 @@ Simulator::Simulator() m_pChangedCircuitLast = m_pChangedCircuitStart; TQTimer * stepTimer = new TQTimer(this); - connect( stepTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(step()) ); + connect( stepTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(step()) ); stepTimer->start(1); } -- cgit v1.2.3