summaryrefslogtreecommitdiffstats
path: root/src/statistics.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:34:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 20:52:59 +0900
commit678eabac8b79a2650ff43f175bef534c0d576e54 (patch)
tree5eeb41840d41631ca4503d814aca21a8e6ad0a3f /src/statistics.cpp
parent57a4c0abc1ec9abe4334eae94e7a2ffbd2815d2e (diff)
downloadknetstats-678eabac8b79a2650ff43f175bef534c0d576e54.tar.gz
knetstats-678eabac8b79a2650ff43f175bef534c0d576e54.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f4f3cbbebd58e8f44df1d4dbc7d576ed0c891eac)
Diffstat (limited to 'src/statistics.cpp')
-rw-r--r--src/statistics.cpp4
1 files changed, 2 insertions, 2 deletions
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() {