diff --git a/src/mainwin.cpp b/src/mainwin.cpp index f9d0b2bcc25b22c6146d18ede799b671d622c342..79db2eab0b502979835c9adf718f6cdee70d847b 100644 --- a/src/mainwin.cpp +++ b/src/mainwin.cpp @@ -127,7 +127,8 @@ void MainWin::httpResponseFinished(QNetworkReply * reply) // connect(nam, SIGNAL(finished(QNetworkReply *)), this, SLOT(httpResponseFinished(QNetworkReply *))); - disconnect(yt->page()->networkAccessManager(), &ReferredNetworkAccessManager::finished, this, &MainWin::httpResponseFinished); + //disconnect(yt->page()->networkAccessManager(), &ReferredNetworkAccessManager::finished, this, &MainWin::httpResponseFinished); + disconnect(yt->page()->networkAccessManager(), SIGNAL(finished(QNetworkReply *)), this, SLOT(httpResponseFinished(QNetworkReply *))); yt->load(QUrl(urlstr.remove("html5=1&"))); } }