summaryrefslogtreecommitdiffstats
path: root/src/knemod/knemodaemon.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:34:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:34:19 +0900
commit89135300a977ebccbb5928797afabfdd8a4222fb (patch)
tree9a3cd1c364643b0608bd1db3290a9885e5e6f5b3 /src/knemod/knemodaemon.cpp
parent8e3901701aa74deea424f0d4e096a58094362cb8 (diff)
downloadknemo-89135300a977ebccbb5928797afabfdd8a4222fb.tar.gz
knemo-89135300a977ebccbb5928797afabfdd8a4222fb.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/knemod/knemodaemon.cpp')
-rw-r--r--src/knemod/knemodaemon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/knemod/knemodaemon.cpp b/src/knemod/knemodaemon.cpp
index 0ad399e..91ae99b 100644
--- a/src/knemod/knemodaemon.cpp
+++ b/src/knemod/knemodaemon.cpp
@@ -81,7 +81,7 @@ KNemoDaemon::KNemoDaemon( const TQCString& name )
mInterfaceDict.setAutoDelete( true );
mPollTimer = new TQTimer();
- connect( mPollTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( updateInterfaces() ) );
+ connect( mPollTimer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( updateInterfaces() ) );
mPollTimer->start( mGeneralData.pollInterval * 1000 );
}