1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Apply code style to context functions

This commit is contained in:
Duncan
2022-11-06 20:49:07 +00:00
committed by GitHub
parent 27f3a3a796
commit 482971710d
104 changed files with 557 additions and 558 deletions

View File

@@ -110,7 +110,7 @@ private:
if (_downloadStatusInfo == DownloadStatusInfo())
{
context_force_close_window_by_class(WindowClass::NetworkStatus);
ContextForceCloseWindowByClass(WindowClass::NetworkStatus);
}
else
{
@@ -136,7 +136,7 @@ private:
auto intent = Intent(WindowClass::NetworkStatus);
intent.putExtra(INTENT_EXTRA_MESSAGE, std::string(str_downloading_objects));
intent.putExtra(INTENT_EXTRA_CALLBACK, []() -> void { _downloadingObjects = false; });
context_open_intent(&intent);
ContextOpenIntent(&intent);
}
}
}