Corected variable name

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97
2023-06-28 13:35:42 +03:00
parent c04cee7ff7
commit 5f1074471d
13 changed files with 32 additions and 32 deletions

View File

@ -23,7 +23,7 @@ class CheckUpdateTask : public Task {
QString old_hash;
QString old_version;
QString new_version;
std::optional<ModPlatform::IndexedVersionType> new_verison_type;
std::optional<ModPlatform::IndexedVersionType> new_version_type;
QString changelog;
ModPlatform::ResourceProvider provider;
shared_qobject_ptr<ResourceDownloadTask> download;
@ -41,7 +41,7 @@ class CheckUpdateTask : public Task {
, old_hash(old_h)
, old_version(old_v)
, new_version(new_v)
, new_verison_type(new_v_type)
, new_version_type(new_v_type)
, changelog(changelog)
, provider(p)
, download(t)