mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-21 02:20:55 +00:00
* EOAccess/EODatabase.m ([EODatabase dealloc]): Use DESTROY
in favor of release. * EOAccess/EOExpressionArray.m ([EOExpressionArray dealloc]): Ditto. * EOAdaptors/Postgres95/Postgres95Adaptor.m ([Postgres95Adaptor dealloc]): Ditto. * EOControl/EOCheapArray.h ([EOCheapArray dealloc]) Remove declaration. * EOControl/EOKeyValueArchiver.m ([EOKeyValueArchivingContainer dealloc]): Ditto. * EOControl/EOMutableKnownKeyDictionary.h ([EOMKKDInitializer dealloc]), ([EOMKKDKeyEnumerator dealloc]), ([EOMKKDSubsetMapping dealloc]), ([EOMKKDArrayMapping dealloc]), ([EOMutableKnownKeyDictionary dealloc]) Ditto. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@19137 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8003cd4cb9
commit
ab13b0f5a9
7 changed files with 28 additions and 17 deletions
18
ChangeLog
18
ChangeLog
|
@ -7,6 +7,24 @@
|
|||
([Postgres95LoginPanel init]): Minor reformatting and more
|
||||
tempRect usage.
|
||||
|
||||
* EOAccess/EODatabase.m ([EODatabase dealloc]): Use DESTROY
|
||||
in favor of release.
|
||||
* EOAccess/EOExpressionArray.m ([EOExpressionArray dealloc]):
|
||||
Ditto.
|
||||
* EOAdaptors/Postgres95/Postgres95Adaptor.m
|
||||
([Postgres95Adaptor dealloc]): Ditto.
|
||||
|
||||
* EOControl/EOCheapArray.h ([EOCheapArray dealloc]) Remove
|
||||
declaration.
|
||||
* EOControl/EOKeyValueArchiver.m
|
||||
([EOKeyValueArchivingContainer dealloc]): Ditto.
|
||||
* EOControl/EOMutableKnownKeyDictionary.h
|
||||
([EOMKKDInitializer dealloc]),
|
||||
([EOMKKDKeyEnumerator dealloc]),
|
||||
([EOMKKDSubsetMapping dealloc]),
|
||||
([EOMKKDArrayMapping dealloc]),
|
||||
([EOMutableKnownKeyDictionary dealloc]) Ditto.
|
||||
|
||||
2004-04-17 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* EOAdaptors/Postgres95/LoginPanel/Postgres95LoginPanel.m
|
||||
|
|
|
@ -153,12 +153,12 @@ static NSMutableArray *databaseInstances;
|
|||
|
||||
- (void)dealloc
|
||||
{
|
||||
[_adaptor release];
|
||||
[_registeredContexts release];
|
||||
[_snapshots release];
|
||||
[_models release];
|
||||
[_entityCache release];
|
||||
[_toManySnapshots release];
|
||||
DESTROY(_adaptor);
|
||||
DESTROY(_registeredContexts);
|
||||
DESTROY(_snapshots);
|
||||
DESTROY(_models);
|
||||
DESTROY(_entityCache);
|
||||
DESTROY(_toManySnapshots);
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
|
|
@ -124,9 +124,9 @@ RCS_ID("$Id$")
|
|||
{
|
||||
DESTROY(_realAttribute); //TODO mettere nei metodi GC
|
||||
// DESTROY(_definition);
|
||||
[_prefix release];
|
||||
[_infix release];
|
||||
[_suffix release];
|
||||
DESTROY(_prefix);
|
||||
DESTROY(_infix);
|
||||
DESTROY(_suffix);
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
|
|
@ -121,7 +121,7 @@ postgresClientVersion()
|
|||
while ((pgConn = [[enumerator nextObject] pointerValue]))
|
||||
[self releasePGconn: pgConn force: YES];
|
||||
|
||||
[_pgConnPool release];
|
||||
DESTROY(_pgConnPool);
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
|
|
@ -46,7 +46,6 @@
|
|||
- (id)initWithArray: (id)array;
|
||||
- (id)initWithObjects: (id *)objects
|
||||
count: (unsigned int)count;
|
||||
- (void)dealloc;
|
||||
- (void)release;
|
||||
- (unsigned int)retainCount;
|
||||
- (id)retain;
|
||||
|
|
|
@ -68,7 +68,6 @@ RCS_ID("$Id$")
|
|||
- (id) parent;
|
||||
- (void) setObject: (id)object;
|
||||
- (id) object;
|
||||
- (void) dealloc;
|
||||
|
||||
@end
|
||||
|
||||
|
|
|
@ -58,7 +58,6 @@
|
|||
zone: (NSZone *)zone;
|
||||
|
||||
- (id)initWithKeys: (NSArray *)keys;
|
||||
- (void)dealloc;
|
||||
- (NSString *)description;
|
||||
- (unsigned int)count;
|
||||
- (void)setObject: (id)object
|
||||
|
@ -88,7 +87,6 @@
|
|||
}
|
||||
|
||||
- (id)initWithTarget: (EOMutableKnownKeyDictionary *)target;
|
||||
- (void)dealloc;
|
||||
- (NSString *)description;
|
||||
- (id)nextObject;
|
||||
|
||||
|
@ -106,7 +104,6 @@
|
|||
sourceDescription: (EOMKKDInitializer *)source
|
||||
destinationDescription: (EOMKKDInitializer *)destination
|
||||
zone: (NSZone *)zone;
|
||||
- (void)dealloc;
|
||||
- (NSString *)description;
|
||||
|
||||
@end
|
||||
|
@ -120,7 +117,6 @@
|
|||
+ (id)newInstanceWithKeyCount: (unsigned int)keyCount
|
||||
destinationDescription: (EOMKKDInitializer *)destination
|
||||
zone: (NSZone *)zone;
|
||||
- (void)dealloc;
|
||||
- (NSString *)description;
|
||||
|
||||
@end
|
||||
|
@ -160,7 +156,6 @@
|
|||
- (id)initWithObjects: (id *)objects
|
||||
forKeys: (id *)keys
|
||||
count: (unsigned int)count;
|
||||
- (void)dealloc;
|
||||
- (unsigned int)count;
|
||||
- (id)objectForKey: (id)key;
|
||||
- (void)setObject: (id)object
|
||||
|
|
Loading…
Reference in a new issue