aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/EventDispatcher.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/EventDispatcher.cpp b/common/EventDispatcher.cpp
index 55eea9c7b2..6f36ee5f0f 100644
--- a/common/EventDispatcher.cpp
+++ b/common/EventDispatcher.cpp
@@ -54,7 +54,8 @@ void EventDispatcher::dispatch() {
while (i->source->pollEvent(event)) {
// We only try to process the events via the setup event mapper, when
// we have a setup mapper and when the event source allows mapping.
- if (_mapper && allowMapping) {
+ assert(_mapper);
+ if (allowMapping) {
bool mapped = _mapper->notifyEvent(event);
// EventMappers must map all events
if (!mapped)
@@ -67,7 +68,7 @@ void EventDispatcher::dispatch() {
// Try getting another event from the current EventSource.
continue;
} else {
- dispatchEvent(event);
+ dispatchEvent(Event(event));
}
}
}