diff options
Diffstat (limited to 'otk/eventdispatcher.cc')
| -rw-r--r-- | otk/eventdispatcher.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/otk/eventdispatcher.cc b/otk/eventdispatcher.cc index d2e1a96e..a34dd9b4 100644 --- a/otk/eventdispatcher.cc +++ b/otk/eventdispatcher.cc @@ -11,7 +11,7 @@ namespace otk { OtkEventDispatcher::OtkEventDispatcher() - : _fallback(0) + : _fallback(0), _master(0) { } @@ -57,6 +57,9 @@ void OtkEventDispatcher::dispatchEvents(void) if (handler) handler->handle(e); + + if (_master) + _master->handle(e); } } |
