From b0c86264e0cd10a0d3a47de3b05be453d9417bcd Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 14 Jan 2024 13:10:18 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- scheck/scheck.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scheck/scheck.cpp') diff --git a/scheck/scheck.cpp b/scheck/scheck.cpp index 2d904af9..f11f7ef4 100644 --- a/scheck/scheck.cpp +++ b/scheck/scheck.cpp @@ -815,7 +815,7 @@ static void renderViolations(const TQValueVector& violation StyleCheckTitleWatcher::StyleCheckTitleWatcher() { TQTimer* checkTimer = new TQTimer(this); - connect( checkTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotCheck()) ); + connect( checkTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotCheck()) ); checkTimer->start(1000); } @@ -880,7 +880,7 @@ StyleCheckStyle::StyleCheckStyle( ) { hoverWidget = 0L; topLevelAccelManageTimer = new TQTimer(this); - connect(topLevelAccelManageTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotAccelManage())); + connect(topLevelAccelManageTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotAccelManage())); watcher = new StyleCheckTitleWatcher; xxMode = (TQString(getenv("KDE_LANG"))=="xx"); } -- cgit v1.2.3