summaryrefslogtreecommitdiff
path: root/otk/eventhandler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'otk/eventhandler.cc')
-rw-r--r--otk/eventhandler.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/otk/eventhandler.cc b/otk/eventhandler.cc
index d61189e4..7e1ad745 100644
--- a/otk/eventhandler.cc
+++ b/otk/eventhandler.cc
@@ -91,6 +91,10 @@ void OtkEventHandler::handle(const XEvent &e)
if (e.type == otk::OBDisplay::shapeEventBase())
return shapeHandler((*(XShapeEvent*)&e));
#endif // SHAPE
+#ifdef XKB
+ if (e.type == otk::OBDisplay::xkbEventBase())
+ return xkbHandler((*(XkbEvent*)&e));
+#endif // XKB
;
}
}