Removes DirectorDelegate

This commit is contained in:
Ricardo Quesada 2014-01-10 20:26:15 -08:00
parent db15e11acd
commit f4a99d0627
2 changed files with 1 additions and 13 deletions

View File

@ -190,18 +190,6 @@ public:
Node* getNotificationNode() const { return _notificationNode; } Node* getNotificationNode() const { return _notificationNode; }
void setNotificationNode(Node *node); void setNotificationNode(Node *node);
/** Director delegate. It shall implement the DirectorDelegate protocol
@since v0.99.5
* @js NA
* @lua NA
*/
DirectorDelegate* getDelegate() const;
/**
* @js NA
* @lua NA
*/
void setDelegate(DirectorDelegate* delegate);
// window size // window size
/** returns the size of the OpenGL view in points. /** returns the size of the OpenGL view in points.

View File

@ -196,7 +196,7 @@ Console::Console()
}; };
_maxCommands = sizeof(commands)/sizeof(commands[0]); _maxCommands = sizeof(commands)/sizeof(commands[0]);
for (size_t i = 0; i < _maxCommands; ++i) for (int i = 0; i < _maxCommands; ++i)
{ {
_commands[i] = commands[i]; _commands[i] = commands[i];
} }