Ivar underscore prefixes added and some tidying done.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4902 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-09-16 07:21:34 +00:00
parent aeae4c5e6f
commit 211089cd20
69 changed files with 2340 additions and 2203 deletions

View file

@ -127,7 +127,7 @@ static IMP initImp;
{
if (!_released_head)
{
addImp = (void (*)(id, SEL, id))
_addImp = (void (*)(id, SEL, id))
[self methodForSelector: @selector(addObject:)];
/* Allocate the array that will be the new head of the list of arrays. */
_released = (struct autorelease_array_list*)
@ -229,7 +229,7 @@ static IMP initImp;
NSAutoreleasePool *pool = ARP_THREAD_VARS->current_pool;
if (pool)
(*pool->addImp)(pool, @selector(addObject:), anObj);
(*pool->_addImp)(pool, @selector(addObject:), anObj);
else
{
NSAutoreleasePool *arp = [NSAutoreleasePool new];