diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-26 10:58:05 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-26 10:58:05 +0000 |
| commit | 150c28620e1f14b7249038068bccca9563526377 (patch) | |
| tree | 8a861ecfab2c1752418f499734ad6d8581278e24 /otk/eventdispatcher.cc | |
| parent | 6935f346b434ba5dea347024f2095069c100b97b (diff) | |
build fixes for evetdispatcher
Diffstat (limited to 'otk/eventdispatcher.cc')
| -rw-r--r-- | otk/eventdispatcher.cc | 4 |
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) |
