issue #2170: A typo fix.

This commit is contained in:
James Chen 2013-08-05 11:33:59 +08:00
parent b52732cc6b
commit 9a9ffaeb4d
2 changed files with 4 additions and 4 deletions

View File

@ -28,12 +28,12 @@ NS_CC_BEGIN
Thread::~Thread()
{
[(id)_autoreasePool release];
[(id)_autoReleasePool release];
}
void Thread::createAutoreleasePool()
{
_autoreasePool = [[NSAutoreleasePool alloc] init];
_autoReleasePool = [[NSAutoreleasePool alloc] init];
}
NS_CC_END

View File

@ -28,12 +28,12 @@ NS_CC_BEGIN
Thread::~Thread()
{
[(id)_autoreasePool release];
[(id)_autoReleasePool release];
}
void Thread::createAutoreleasePool()
{
_autoreasePool = [[NSAutoreleasePool alloc] init];
_autoReleasePool = [[NSAutoreleasePool alloc] init];
}
NS_CC_END