diff options
author | Ken Moore <ken@ixsystems.com> | 2017-12-15 14:02:57 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-12-15 14:02:57 -0500 |
commit | 21ab5952d10a71dec65540d7ee029ce0541a3eaf (patch) | |
tree | 7047e171ed855a5194a7befe8c15fca6457ade64 /src-qt5/src-cpp | |
parent | A bit more work on the networking side of the OSInterface. (diff) | |
download | lumina-21ab5952d10a71dec65540d7ee029ce0541a3eaf.tar.gz lumina-21ab5952d10a71dec65540d7ee029ce0541a3eaf.tar.bz2 lumina-21ab5952d10a71dec65540d7ee029ce0541a3eaf.zip |
Another minor networking fix.
Diffstat (limited to 'src-qt5/src-cpp')
-rw-r--r-- | src-qt5/src-cpp/framework-OSInterface_private.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/src-cpp/framework-OSInterface_private.cpp b/src-qt5/src-cpp/framework-OSInterface_private.cpp index b4f4235e..d15d9be8 100644 --- a/src-qt5/src-cpp/framework-OSInterface_private.cpp +++ b/src-qt5/src-cpp/framework-OSInterface_private.cpp @@ -54,7 +54,7 @@ void OSInterface::connectIodevice(){ void OSInterface::connectNetman(){ if(netman==0){ return; } connect(netman, SIGNAL(networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility)), this, SLOT(netAccessChanged(QNetworkAccessManager::NetworkAccessibility)) ); - connect(netman, SIGNAL(requestFinished(QNetworkReply*)), this, SLOT(netRequestFinished(QNetworkReply*)) ); + connect(netman, SIGNAL(finished(QNetworkReply*)), this, SLOT(netRequestFinished(QNetworkReply*)) ); connect(netman, SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError>&)), this, SLOT(netSslErrors(QNetworkReply*, const QList<QSslError>&)) ); } |