issue #2087: [dispatcher] Node::getEventPriority is a private method now.

This commit is contained in:
James Chen 2013-09-16 14:43:07 +08:00
parent e31c4f008d
commit 050de08b8f
1 changed files with 2 additions and 3 deletions

View File

@ -210,9 +210,6 @@ public:
* @return The Z order. * @return The Z order.
*/ */
virtual int getZOrder() const; virtual int getZOrder() const;
int getEventPriority() const { return _eventPriority; };
/** /**
* Sets the real OpenGL Z vertex. * Sets the real OpenGL Z vertex.
@ -1374,6 +1371,8 @@ private:
friend class Director; friend class Director;
friend class EventDispatcher; friend class EventDispatcher;
int getEventPriority() const { return _eventPriority; };
void associateEventListener(EventListener* listener); void associateEventListener(EventListener* listener);
void dissociateEventListener(EventListener* listener); void dissociateEventListener(EventListener* listener);