mirror of https://github.com/axmolengine/axmol.git
issue #2087: [dispatcher] Node::getEventPriority is a private method now.
This commit is contained in:
parent
e31c4f008d
commit
050de08b8f
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue