aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/CheckUpdateTask.h
diff options
context:
space:
mode:
authorTrial97 <alexandru.tripon97@gmail.com>2023-06-28 13:35:42 +0300
committerTrial97 <alexandru.tripon97@gmail.com>2023-06-28 13:35:42 +0300
commit5f1074471d254ff82af1980e15a53b71ae121186 (patch)
tree42fb621f6ca1831554e225e3d7414f235d3b13d4 /launcher/modplatform/CheckUpdateTask.h
parentc04cee7ff75730df2c859ecae4567abb4e98dcd4 (diff)
downloadPrismLauncher-5f1074471d254ff82af1980e15a53b71ae121186.tar.gz
PrismLauncher-5f1074471d254ff82af1980e15a53b71ae121186.tar.bz2
PrismLauncher-5f1074471d254ff82af1980e15a53b71ae121186.zip
Corected variable name
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/modplatform/CheckUpdateTask.h')
-rw-r--r--launcher/modplatform/CheckUpdateTask.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/modplatform/CheckUpdateTask.h b/launcher/modplatform/CheckUpdateTask.h
index fbafedd7..65c80d26 100644
--- a/launcher/modplatform/CheckUpdateTask.h
+++ b/launcher/modplatform/CheckUpdateTask.h
@@ -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)