minor cleaning
This commit is contained in:
parent
cc217ded94
commit
225dc75dd9
2 changed files with 3 additions and 3 deletions
|
@ -105,6 +105,6 @@ void Netizen::sendWindowLower(Window w) {
|
|||
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);
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ public:
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue