mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 17:35:45 +02:00
Remove unused variable
This commit is contained in:
parent
5aa5bca8f7
commit
dabea21d66
1 changed files with 1 additions and 3 deletions
|
@ -364,7 +364,6 @@ void Resource::handleDownloadProgress(uint64_t bytesReceived, uint64_t bytesTota
|
||||||
}
|
}
|
||||||
|
|
||||||
void Resource::handleReplyFinished() {
|
void Resource::handleReplyFinished() {
|
||||||
QString u = _url.path();
|
|
||||||
Q_ASSERT(_request);
|
Q_ASSERT(_request);
|
||||||
|
|
||||||
auto result = _request->getResult();
|
auto result = _request->getResult();
|
||||||
|
@ -387,8 +386,7 @@ void Resource::handleReplyFinished() {
|
||||||
_request = nullptr;
|
_request = nullptr;
|
||||||
|
|
||||||
if (result == ResourceRequest::Result::TIMEOUT) {
|
if (result == ResourceRequest::Result::TIMEOUT) {
|
||||||
qDebug() << "Timed out loading" << _url <<
|
qDebug() << "Timed out loading" << _url << "received" << _bytesReceived << "total" << _bytesTotal;
|
||||||
"received" << _bytesReceived << "total" << _bytesTotal;
|
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "Error loading " << _url;
|
qDebug() << "Error loading " << _url;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue