mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-21 02:20:55 +00:00
* 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:
parent
def6e601e7
commit
04ce0c31d2
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue