From 7a539116aecd9ca544944f73cb24e2fc7e2c6ba6 Mon Sep 17 00:00:00 2001 From: Eshan Roy Date: Wed, 20 Nov 2024 11:07:40 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(=5Fblank):=20invalid=20use?= =?UTF-8?q?=20of=20non-static=20member=20function=20=E2=80=98void=20QTimer?= =?UTF-8?q?::timeout(QPrivateSignal)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qt/snigdhaosblackbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/snigdhaosblackbox.cpp b/qt/snigdhaosblackbox.cpp index 6d310ce..3d418b4 100644 --- a/qt/snigdhaosblackbox.cpp +++ b/qt/snigdhaosblackbox.cpp @@ -38,7 +38,7 @@ void SnigdhaOSBlackBox::doInternetUpRequest(){ timer->start(5000); //5 sec // if the time is out we will try again - connect(timer, QTimer::timeout, this, [this, timer, network_reply, network_manager](){ + connect(timer, &QTimer::timeout, this, [this, timer, network_reply, network_manager](){ timer->stop(); timer->deleteLayer(); network_reply->deleteLater();