all repos — fluxbox @ 225dc75dd9c85f573c9be95e87f3eb4acadc4ddc

custom fork of the fluxbox windowmanager

minor cleaning
fluxgen fluxgen
commit

225dc75dd9c85f573c9be95e87f3eb4acadc4ddc

parent

cc217ded949b5a918ad5e7baddbd0fbaf817af7c

2 files changed, 3 insertions(+), 3 deletions(-)

jump to
M src/Netizen.ccsrc/Netizen.cc

@@ -105,6 +105,6 @@

XSendEvent(m_display, window(), False, NoEventMask, &event); } -void Netizen::sendConfigNotify(XEvent *e) { - XSendEvent(m_display, window(), False, StructureNotifyMask, e); +void Netizen::sendConfigNotify(XEvent &ev) { + XSendEvent(m_display, window(), False, StructureNotifyMask, &ev); }
M src/Netizen.hhsrc/Netizen.hh

@@ -43,7 +43,7 @@ void sendWindowDel(Window w);

void sendWindowRaise(Window w); void sendWindowLower(Window w); - void sendConfigNotify(XEvent *xe); + void sendConfigNotify(XEvent &xe); private: const BScreen &m_screen; Display *m_display; ///< display connection