summaryrefslogtreecommitdiffstats
path: root/src/sensorslist.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:47:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:56:03 +0900
commitb7fce5c4dd6147a0a9478dcbd755123e9e737a0c (patch)
tree2e6ca6e0183071a6c33b9e08d776779ecc5ca09a /src/sensorslist.cpp
parent7453b1ad93b8e16f5547b3532a0eb360675405f0 (diff)
downloadksensors-b7fce5c4.tar.gz
ksensors-b7fce5c4.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 6da2ba677c47d91e60cc819e29620bc4c919bfaa)
Diffstat (limited to 'src/sensorslist.cpp')
-rw-r--r--src/sensorslist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sensorslist.cpp b/src/sensorslist.cpp
index 90bcac4..67e971e 100644
--- a/src/sensorslist.cpp
+++ b/src/sensorslist.cpp
@@ -108,8 +108,8 @@ void SensorsList::timerEvent( TQTimerEvent * )
void SensorsList::childEvent ( TQChildEvent *e )
{
if(e->inserted()) {
- connect((Sensor *)e->child(),SIGNAL(configChanged()),this,SLOT(slotConfigChanged()));
- connect((Sensor *)e->child(),SIGNAL(valueChanged(double)) ,this,SLOT(slotValueChanged()));
+ connect((Sensor *)e->child(),TQ_SIGNAL(configChanged()),this,TQ_SLOT(slotConfigChanged()));
+ connect((Sensor *)e->child(),TQ_SIGNAL(valueChanged(double)) ,this,TQ_SLOT(slotValueChanged()));
}
}