diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:47:53 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:56:03 +0900 |
| commit | b7fce5c4dd6147a0a9478dcbd755123e9e737a0c (patch) | |
| tree | 2e6ca6e0183071a6c33b9e08d776779ecc5ca09a /src/lmsensorswidget.cpp | |
| parent | 7453b1ad93b8e16f5547b3532a0eb360675405f0 (diff) | |
| download | ksensors-b7fce5c4dd6147a0a9478dcbd755123e9e737a0c.tar.gz ksensors-b7fce5c4dd6147a0a9478dcbd755123e9e737a0c.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/lmsensorswidget.cpp')
| -rw-r--r-- | src/lmsensorswidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lmsensorswidget.cpp b/src/lmsensorswidget.cpp index ae4f909..630dd51 100644 --- a/src/lmsensorswidget.cpp +++ b/src/lmsensorswidget.cpp @@ -66,7 +66,7 @@ LMSensorsWidget::LMSensorsWidget(LMSensors *lsensors,TQWidget *parent, const cha // infoPanels= new InfoPanels(this); // - connect(sensors, SIGNAL(configChanged(const char *)), this, SLOT(slotConfigChanged(const char *)) ); + connect(sensors, TQ_SIGNAL(configChanged(const char *)), this, TQ_SLOT(slotConfigChanged(const char *)) ); } @@ -237,7 +237,7 @@ void LMSensorsWidget::loadDisplayConfig(Panel *display) adjustSize(); } display->installEventFilter(this); - connect(display, SIGNAL(eventReceived(TQEvent *)), this, SLOT(childEventReceived(TQEvent *)) ); + connect(display, TQ_SIGNAL(eventReceived(TQEvent *)), this, TQ_SLOT(childEventReceived(TQEvent *)) ); } |
