summaryrefslogtreecommitdiffstats
path: root/src/ksensorscfg.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/ksensorscfg.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/ksensorscfg.cpp')
-rw-r--r--src/ksensorscfg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ksensorscfg.cpp b/src/ksensorscfg.cpp
index 7c80fec..f35495b 100644
--- a/src/ksensorscfg.cpp
+++ b/src/ksensorscfg.cpp
@@ -57,7 +57,7 @@ KSensorsCfg::KSensorsCfg(LMSensors *lsensors, const char *name)
m_generalcfg = new GeneralCfg(sensors, page);
lay = new TQVBoxLayout( page );
lay->addWidget(m_generalcfg);
- connect(this, SIGNAL(applyClicked()), m_generalcfg, SLOT(slotApplyChanges()) );
+ connect(this, TQ_SIGNAL(applyClicked()), m_generalcfg, TQ_SLOT(slotApplyChanges()) );
TQObjectList *list= sensors->getSensorsChips();
if(list) {
@@ -69,7 +69,7 @@ KSensorsCfg::KSensorsCfg(LMSensors *lsensors, const char *name)
cfgWidget = new LMSensorsCfg(chip, page);
lay = new TQVBoxLayout( page );
lay->addWidget(cfgWidget);
- connect(this, SIGNAL(applyClicked()), cfgWidget, SLOT(slotApplyChanges()) );
+ connect(this, TQ_SIGNAL(applyClicked()), cfgWidget, TQ_SLOT(slotApplyChanges()) );
}
else
{
@@ -77,7 +77,7 @@ KSensorsCfg::KSensorsCfg(LMSensors *lsensors, const char *name)
cfgWidget = new LMSensorsCfg(chip, page);
lay = new TQVBoxLayout( page );
lay->addWidget(cfgWidget);
- connect(this, SIGNAL(applyClicked()), cfgWidget, SLOT(slotApplyChanges()) );
+ connect(this, TQ_SIGNAL(applyClicked()), cfgWidget, TQ_SLOT(slotApplyChanges()) );
}
}
}
@@ -86,7 +86,7 @@ KSensorsCfg::KSensorsCfg(LMSensors *lsensors, const char *name)
m_systemcfg = new SystemCfg(sensors, page);
lay = new TQVBoxLayout( page );
lay->addWidget(m_systemcfg);
- connect(this, SIGNAL(applyClicked()), m_systemcfg, SLOT(slotApplyChanges()) );
+ connect(this, TQ_SIGNAL(applyClicked()), m_systemcfg, TQ_SLOT(slotApplyChanges()) );
adjustSize();
}