From 269551cf8e80ed83b626bb793f0f9f15b5f2809c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 2 Jan 2024 11:38:29 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- plugins/timecontrol/timecontrol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/timecontrol/timecontrol.cpp') diff --git a/plugins/timecontrol/timecontrol.cpp b/plugins/timecontrol/timecontrol.cpp index 1b56ff0..a5eaeeb 100644 --- a/plugins/timecontrol/timecontrol.cpp +++ b/plugins/timecontrol/timecontrol.cpp @@ -51,8 +51,8 @@ TimeControl::TimeControl (const TQString &n) m_alarmTimer(this), m_countdownTimer(this) { - TQObject::connect(&m_alarmTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotQTimerAlarmTimeout())); - TQObject::connect(&m_countdownTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotQTimerCountdownTimeout())); + TQObject::connect(&m_alarmTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotQTimerAlarmTimeout())); + TQObject::connect(&m_countdownTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotQTimerCountdownTimeout())); } -- cgit v1.2.1