mirror of
https://github.com/Snigdha-OS/snigdhaos-blackbox.git
synced 2025-09-21 03:55:05 +02:00
🐞 fix(_blank): invalid use of non-static member function ‘void QTimer::timeout(QPrivateSignal)
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user