Strip trailing whitespaces.

svn-id: r42752
This commit is contained in:
Johannes Schickel 2009-07-25 13:00:09 +00:00
parent 7e71865e91
commit fa4903f19c
2 changed files with 3 additions and 3 deletions

View file

@ -95,7 +95,7 @@ void EventDispatcher::unregisterSource(EventSource *source) {
_sources.erase(i); _sources.erase(i);
return; return;
} }
} }
} }
void EventDispatcher::registerObserver(EventObserver *obs, uint priority, bool autoFree) { void EventDispatcher::registerObserver(EventObserver *obs, uint priority, bool autoFree) {

View file

@ -234,7 +234,7 @@ public:
* Another speciality is the support for a event mapper, which * Another speciality is the support for a event mapper, which
* will catch events and create new events out of them. This * will catch events and create new events out of them. This
* mapper will be processed before an event is sent to the * mapper will be processed before an event is sent to the
* observers. * observers.
*/ */
class EventDispatcher { class EventDispatcher {
public: public:
@ -300,7 +300,7 @@ private:
struct SourceEntry : public Entry { struct SourceEntry : public Entry {
EventSource *source; EventSource *source;
}; };
Common::List<SourceEntry> _sources; Common::List<SourceEntry> _sources;
struct ObserverEntry : public Entry { struct ObserverEntry : public Entry {