mirror of https://github.com/axmolengine/axmol.git
issue #2170: A typo fix.
This commit is contained in:
parent
b52732cc6b
commit
9a9ffaeb4d
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue