diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-04 08:54:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-04 08:54:43 +0000 |
| commit | fbc516442d47048edf2b5201e0b956c85b782bac (patch) | |
| tree | 412db86e2798ff0f4a16e1cef3efc0a11364abe6 /otk/eventhandler.cc | |
| parent | a21c0c55ca06fed3882f2417a8e0862f314dd434 (diff) | |
add suport for XMotionEvents
Diffstat (limited to 'otk/eventhandler.cc')
| -rw-r--r-- | otk/eventhandler.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/otk/eventhandler.cc b/otk/eventhandler.cc index 6603b3e1..d61189e4 100644 --- a/otk/eventhandler.cc +++ b/otk/eventhandler.cc @@ -30,6 +30,8 @@ void OtkEventHandler::handle(const XEvent &e) return buttonPressHandler(e.xbutton); case ButtonRelease: return buttonReleaseHandler(e.xbutton); + case MotionNotify: + return motionHandler(e.xmotion); case EnterNotify: return enterHandler(e.xcrossing); case LeaveNotify: |
