mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Merge pull request #7416 from zzmp/fix/static-cast-network
Static cast avatar network reply
This commit is contained in:
commit
5f3c29d3e2
1 changed files with 1 additions and 1 deletions
|
@ -1153,7 +1153,7 @@ void AvatarData::setBillboardFromURL(const QString &billboardURL) {
|
|||
}
|
||||
|
||||
void AvatarData::setBillboardFromNetworkReply() {
|
||||
QNetworkReply* networkReply = reinterpret_cast<QNetworkReply*>(sender());
|
||||
QNetworkReply* networkReply = static_cast<QNetworkReply*>(sender());
|
||||
setBillboard(networkReply->readAll());
|
||||
networkReply->deleteLater();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue