From 678eabac8b79a2650ff43f175bef534c0d576e54 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 5 Jan 2024 10:34:39 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit f4f3cbbebd58e8f44df1d4dbc7d576ed0c891eac) --- src/statistics.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/statistics.cpp') diff --git a/src/statistics.cpp b/src/statistics.cpp index 6097be1..3eec9db 100644 --- a/src/statistics.cpp +++ b/src/statistics.cpp @@ -43,8 +43,8 @@ Statistics::Statistics( KNetStatsView* parent, const char *name ) update(); mTimer = new TQTimer( this ); - connect( mTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( update() ) ); - connect( mTimer, TQT_SIGNAL( timeout() ), chart, TQT_SLOT( update() ) ); + connect( mTimer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( update() ) ); + connect( mTimer, TQ_SIGNAL( timeout() ), chart, TQ_SLOT( update() ) ); } void Statistics::update() { -- cgit v1.2.3