diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:47:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:47:53 +0900 |
commit | 6da2ba677c47d91e60cc819e29620bc4c919bfaa (patch) | |
tree | 2e6ca6e0183071a6c33b9e08d776779ecc5ca09a /src/ksensorscfg.cpp | |
parent | 1895cd7a20dac108d924e5094418939fd4b5bafb (diff) | |
download | ksensors-6da2ba677c47d91e60cc819e29620bc4c919bfaa.tar.gz ksensors-6da2ba677c47d91e60cc819e29620bc4c919bfaa.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/ksensorscfg.cpp')
-rw-r--r-- | src/ksensorscfg.cpp | 8 |
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(); } |