aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2009-07-25 13:00:09 +0000
committerJohannes Schickel2009-07-25 13:00:09 +0000
commitfa4903f19ccef07423bd254e15a683078f763def (patch)
treeef0eb8788d7bcc374ac71abdcb2089ee2d7ff856
parent7e71865e91a19b022a5ad839802f79a5f300fe8d (diff)
downloadscummvm-rg350-fa4903f19ccef07423bd254e15a683078f763def.tar.gz
scummvm-rg350-fa4903f19ccef07423bd254e15a683078f763def.tar.bz2
scummvm-rg350-fa4903f19ccef07423bd254e15a683078f763def.zip
Strip trailing whitespaces.
svn-id: r42752
-rw-r--r--common/events.cpp2
-rw-r--r--common/events.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/common/events.cpp b/common/events.cpp
index 0fab55c956..57765f9d13 100644
--- a/common/events.cpp
+++ b/common/events.cpp
@@ -95,7 +95,7 @@ void EventDispatcher::unregisterSource(EventSource *source) {
_sources.erase(i);
return;
}
- }
+ }
}
void EventDispatcher::registerObserver(EventObserver *obs, uint priority, bool autoFree) {
diff --git a/common/events.h b/common/events.h
index 014c82ec91..34769729ea 100644
--- a/common/events.h
+++ b/common/events.h
@@ -234,7 +234,7 @@ public:
* Another speciality is the support for a event mapper, which
* will catch events and create new events out of them. This
* mapper will be processed before an event is sent to the
- * observers.
+ * observers.
*/
class EventDispatcher {
public:
@@ -300,7 +300,7 @@ private:
struct SourceEntry : public Entry {
EventSource *source;
};
-
+
Common::List<SourceEntry> _sources;
struct ObserverEntry : public Entry {