1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 23:04:36 +01:00

Rename rct_window_event_list to WindowEventList

This commit is contained in:
Gymnasiast
2022-08-27 16:56:52 +02:00
parent 5647fc8506
commit 45e7ee6a73
29 changed files with 65 additions and 69 deletions

View File

@@ -141,7 +141,7 @@ static void WindowEditorObjectiveOptionsRidesPaint(rct_window *w, rct_drawpixeli
static void WindowEditorObjectiveOptionsRidesScrollpaint(rct_window *w, rct_drawpixelinfo *dpi, int32_t scrollIndex);
// 0x009A9DF4
static rct_window_event_list window_objective_options_main_events([](auto& events)
static WindowEventList window_objective_options_main_events([](auto& events)
{
events.mouse_up = &WindowEditorObjectiveOptionsMainMouseup;
events.resize = &WindowEditorObjectiveOptionsMainResize;
@@ -154,7 +154,7 @@ static rct_window_event_list window_objective_options_main_events([](auto& event
});
// 0x009A9F58
static rct_window_event_list window_objective_options_rides_events([](auto& events)
static WindowEventList window_objective_options_rides_events([](auto& events)
{
events.mouse_up = &WindowEditorObjectiveOptionsRidesMouseup;
events.resize = &WindowEditorObjectiveOptionsRidesResize;
@@ -167,7 +167,7 @@ static rct_window_event_list window_objective_options_rides_events([](auto& even
events.scroll_paint = &WindowEditorObjectiveOptionsRidesScrollpaint;
});
static rct_window_event_list *window_editor_objective_options_page_events[] = {
static WindowEventList *window_editor_objective_options_page_events[] = {
&window_objective_options_main_events,
&window_objective_options_rides_events,
};