issue #2521: Fixing a logical error in CCBReader::addOwnerOutletNode. 'NULL != node' --> 'NULL == node'.

This commit is contained in:
James Chen 2013-08-12 11:19:21 +08:00
parent 331f0ef7b0
commit a34c70d253
1 changed files with 1 additions and 1 deletions

View File

@ -1081,7 +1081,7 @@ void CCBReader::addOwnerOutletName(std::string name)
void CCBReader::addOwnerOutletNode(Node *node)
{
if (NULL != node)
if (NULL == node)
return;
_ownerOutletNodes->addObject(node);