fix compile warning

This commit is contained in:
Oliver 2023-08-29 00:17:40 +02:00
parent 12a2d71762
commit 2fdb7544c8
Signed by: okaestne
GPG Key ID: 06A81B143EA9588F
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
static const QString BASEURL = "https://ddragon.leagueoflegends.com/";
const DataDragon::ChampData DataDragon::EMPTYCHAMP;
DataDragon::DataDragon(const QString& locale) : RestClient(BASEURL), locale(locale), cache({{"square", ".png"}, {"loading", "_0.jpg"}, {"splash", "_0.jpg"}}) {
DataDragon::DataDragon(const QString& locale) : RestClient(BASEURL), locale(locale), cache{{"square", ".png"}, {"loading", "_0.jpg"}, {"splash", "_0.jpg"}} {
this->setObjectName("DataDragon");
}