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)
|
||||
handler->handle(e);
|
||||
|
||||
if (master)
|
||||
master->handle(e);
|
||||
if (_master)
|
||||
_master->handle(e);
|
||||
}
|
||||
|
||||
OtkEventHandler *OtkEventDispatcher::findHandler(Window win)
|
||||
|
|
|
@ -36,6 +36,7 @@ private:
|
|||
OtkEventMap _map;
|
||||
OtkEventHandler *_fallback;
|
||||
OtkEventHandler *_master;
|
||||
Window _focus;
|
||||
XEvent _focus_e;
|
||||
|
||||
//! The time at which the last XEvent with a time was received
|
||||
|
|
Loading…
Reference in a new issue