From a21d48defb5067a5bdfc179890b1e4d1e68c5e76 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Wed, 6 Aug 2025 22:54:05 -0400 Subject: [PATCH] refactor: reorder initilization order in XWindowEventQueueBuffer constructor --- src/lib/platform/XWindowsEventQueueBuffer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/platform/XWindowsEventQueueBuffer.cpp b/src/lib/platform/XWindowsEventQueueBuffer.cpp index 22cf0ce42..c7211c3a6 100644 --- a/src/lib/platform/XWindowsEventQueueBuffer.cpp +++ b/src/lib/platform/XWindowsEventQueueBuffer.cpp @@ -28,9 +28,9 @@ class EventQueueTimer // XWindowsEventQueueBuffer::XWindowsEventQueueBuffer(Display *display, Window window, IEventQueue *events) - : m_events(events), - m_display(display), - m_window(window) + : m_display(display), + m_window(window), + m_events(events) { assert(m_display != nullptr); assert(m_window != None);