mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 20:06:48 +02:00
Static cast avatar network reply
This commit is contained in:
parent
f58a00f75a
commit
1750b973e0
1 changed files with 1 additions and 1 deletions
|
@ -1162,7 +1162,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