build fixes for evetdispatcher
This commit is contained in:
parent
6935f346b4
commit
150c28620e
2 changed files with 3 additions and 2 deletions
|
@ -123,8 +123,8 @@ void OtkEventDispatcher::dispatch(const XEvent &e) {
|
||||||
if (handler)
|
if (handler)
|
||||||
handler->handle(e);
|
handler->handle(e);
|
||||||
|
|
||||||
if (master)
|
if (_master)
|
||||||
master->handle(e);
|
_master->handle(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
OtkEventHandler *OtkEventDispatcher::findHandler(Window win)
|
OtkEventHandler *OtkEventDispatcher::findHandler(Window win)
|
||||||
|
|
|
@ -36,6 +36,7 @@ private:
|
||||||
OtkEventMap _map;
|
OtkEventMap _map;
|
||||||
OtkEventHandler *_fallback;
|
OtkEventHandler *_fallback;
|
||||||
OtkEventHandler *_master;
|
OtkEventHandler *_master;
|
||||||
|
Window _focus;
|
||||||
XEvent _focus_e;
|
XEvent _focus_e;
|
||||||
|
|
||||||
//! The time at which the last XEvent with a time was received
|
//! The time at which the last XEvent with a time was received
|
||||||
|
|
Loading…
Reference in a new issue