x11_standalone_overlaywindow: Adjust initialization order
This fixes a clang warning about fields being initialized in a different order than they were declared
This commit is contained in:
parent
41f66a37a1
commit
f842493563
1 changed files with 1 additions and 1 deletions
|
@ -30,9 +30,9 @@ namespace KWin
|
||||||
OverlayWindowX11::OverlayWindowX11(X11StandaloneBackend *backend)
|
OverlayWindowX11::OverlayWindowX11(X11StandaloneBackend *backend)
|
||||||
: OverlayWindow()
|
: OverlayWindow()
|
||||||
, X11EventFilter(QList<int>{XCB_EXPOSE, XCB_VISIBILITY_NOTIFY})
|
, X11EventFilter(QList<int>{XCB_EXPOSE, XCB_VISIBILITY_NOTIFY})
|
||||||
, m_backend(backend)
|
|
||||||
, m_visible(true)
|
, m_visible(true)
|
||||||
, m_shown(false)
|
, m_shown(false)
|
||||||
|
, m_backend(backend)
|
||||||
, m_window(XCB_WINDOW_NONE)
|
, m_window(XCB_WINDOW_NONE)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue