* EOControl/EOKeyGlobalID.m ([EOKeyGlobalID

+globalIDWithEntityName:keys:keyCount:zone:]): Use AUTORELEASE
        instead of autorelease.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@16675 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2003-05-08 12:52:45 +00:00
parent def6e601e7
commit 04ce0c31d2
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2003-08-05 David Ayers <d.ayers@inode.at>
* EOControl/EOKeyGlobalID.m ([EOKeyGlobalID
+globalIDWithEntityName:keys:keyCount:zone:]): Use AUTORELEASE
instead of autorelease.
* EOControl/EOFault.m ([EOFault +initialize]): Fix initialization
of cached class variable.
* EOAccess/EODatabaseContext.m

View file

@ -56,8 +56,7 @@ RCS_ID("$Id$")
keyCount: (unsigned)count
zone: (NSZone *)zone
{
EOKeyGlobalID *gid = [[[EOKeyGlobalID allocWithZone: zone] init]
autorelease];
EOKeyGlobalID *gid = AUTORELEASE([[EOKeyGlobalID allocWithZone: zone] init]);
int i;
ASSIGN(gid->_entityName, entityName);