1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 13:33:02 +01:00

Rename global window functions to TitleCase (#19167)

This commit is contained in:
Hielke Morsink
2023-01-16 21:13:42 +01:00
committed by GitHub
parent 7f5934cc95
commit 6dafbbfb65
150 changed files with 1713 additions and 1720 deletions

View File

@@ -384,7 +384,7 @@ private:
{
selected_list_item = index;
}
widget_invalidate(*this, WIDX_SCROLL);
WidgetInvalidate(*this, WIDX_SCROLL);
}
public:
@@ -409,7 +409,7 @@ public:
switch (widgetIndex)
{
case WIDX_CLOSE:
window_close(*this);
WindowClose(*this);
return;
case WIDX_COPY_CURRENT:
if (selected_list_item > -1 && selected_list_item < no_list_items)
@@ -437,7 +437,7 @@ public:
if (!WidgetIsHighlighted(*this, WIDX_SCROLL))
{
_highlightedIndex = -1;
widget_invalidate(*this, WIDX_SCROLL);
WidgetInvalidate(*this, WIDX_SCROLL);
}
#ifndef DISABLE_HTTP
@@ -480,7 +480,7 @@ public:
else
_highlightedIndex = selectedItem;
widget_invalidate(*this, WIDX_SCROLL);
WidgetInvalidate(*this, WIDX_SCROLL);
}
void OnDraw(rct_drawpixelinfo& dpi) override
@@ -564,7 +564,7 @@ public:
rct_window* WindowObjectLoadErrorOpen(utf8* path, size_t numMissingObjects, const ObjectEntryDescriptor* missingObjects)
{
// Check if window is already open
auto* window = window_bring_to_front_by_class(WindowClass::ObjectLoadError);
auto* window = WindowBringToFrontByClass(WindowClass::ObjectLoadError);
if (window == nullptr)
{
window = WindowCreate<ObjectLoadErrorWindow>(WindowClass::ObjectLoadError, WW, WH, 0);