diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-04 07:55:52 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-04 07:55:52 +0000 |
| commit | 56d7b547ae156e17c8e03ada3b80468f5a0b2605 (patch) | |
| tree | 155caca7568be2949c7f99468e8cae55327312cb /otk/eventdispatcher.cc | |
| parent | 925262bee2d1edfbec1c3fb1725f09cc926b4c7d (diff) | |
button press/releases WORK
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); } } |
