build fixes for evetdispatcher

This commit is contained in:
Dana Jansens 2002-12-26 10:58:05 +00:00
parent 6935f346b4
commit 150c28620e
2 changed files with 3 additions and 2 deletions

View file

@ -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)

View file

@ -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