summaryrefslogtreecommitdiff
path: root/otk/eventdispatcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'otk/eventdispatcher.cc')
-rw-r--r--otk/eventdispatcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/eventdispatcher.cc b/otk/eventdispatcher.cc
index 73c329e8..4a70c857 100644
--- a/otk/eventdispatcher.cc
+++ b/otk/eventdispatcher.cc
@@ -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)