From 6da2ba677c47d91e60cc819e29620bc4c919bfaa Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 7 Jan 2024 19:47:53 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/lmsensorswidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lmsensorswidget.cpp') 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 *)) ); } -- cgit v1.2.3