refactor: reorder initilization order in XWindowEventQueueBuffer constructor
This commit is contained in:
committed by
Chris Rizzitello
parent
3770e2c39e
commit
a21d48defb
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user