diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:34:39 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:34:39 +0900 |
commit | f4f3cbbebd58e8f44df1d4dbc7d576ed0c891eac (patch) | |
tree | 5eeb41840d41631ca4503d814aca21a8e6ad0a3f /src/statistics.cpp | |
parent | f3c6af06ee2ac9d6a4fc7e0346eff7b67ea04610 (diff) | |
download | knetstats-f4f3cbbebd58e8f44df1d4dbc7d576ed0c891eac.tar.gz knetstats-f4f3cbbebd58e8f44df1d4dbc7d576ed0c891eac.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/statistics.cpp')
-rw-r--r-- | src/statistics.cpp | 4 |
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() { |