Strip trailing whitespaces.
svn-id: r42752
This commit is contained in:
parent
7e71865e91
commit
fa4903f19c
2 changed files with 3 additions and 3 deletions
|
@ -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) {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue