int --> Event::Type

This commit is contained in:
James Chen 2013-10-25 16:43:04 +08:00
parent cb7e0b391b
commit 063b012a9c
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public:
virtual ~Event();
/** Gets the event type */
inline int getType() const { return _type; };
inline Type getType() const { return _type; };
/** Stops propagation for current event */
inline void stopPropagation() { _isStopped = true; };