mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-17 09:31:59 -05:00
Fix Qt version compatibility compile issue
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7380 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
440559f0c3
commit
17436a7b43
@ -133,9 +133,9 @@ void RemoteFile::download (QUrl url)
|
||||
reply_ = network_manager_->get (request);
|
||||
}
|
||||
|
||||
connect (reply_, &QNetworkReply::finished, this, &RemoteFile::reply_finished);
|
||||
connect (reply_, &QNetworkReply::readyRead, this, &RemoteFile::store);
|
||||
connect (reply_, &QNetworkReply::downloadProgress
|
||||
connect (reply_.data (), &QNetworkReply::finished, this, &RemoteFile::reply_finished);
|
||||
connect (reply_.data (), &QNetworkReply::readyRead, this, &RemoteFile::store);
|
||||
connect (reply_.data (), &QNetworkReply::downloadProgress
|
||||
, [this] (qint64 bytes_received, qint64 total_bytes) {
|
||||
// report progress of wanted file
|
||||
if (is_valid_)
|
||||
|
Loading…
Reference in New Issue
Block a user