summaryrefslogtreecommitdiffstats
path: root/src/ksensorscfg.cpp
diff options
context:
space:
mode:
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();
}