Remove swappedObjects ivar and references in init and dealloc.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23103 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-06-24 14:37:41 +00:00
parent cbba5cb5c7
commit 1039379c21
2 changed files with 5 additions and 16 deletions

View file

@ -1,3 +1,8 @@
2006-06-24 10:36 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormNibWrapperLoader.m: Remove swappedObjects
ivar and also remove from -init and -dealloc in GormNibWrapperLoader.
2006-06-24 10:22 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormNibWrapperLoader.m: Use the "classes" map properly in

View file

@ -62,27 +62,11 @@
@interface GormNibWrapperLoader : GormWrapperLoader
{
NSIBObjectData *container;
NSMutableDictionary *swappedObjects;
id nibFilesOwner;
}
@end
@implementation GormNibWrapperLoader
- (id) init
{
if((self = [super init]) != nil)
{
swappedObjects = [[NSMutableDictionary alloc] init];
}
return self;
}
- (void) dealloc
{
RELEASE(swappedObjects);
[super dealloc];
}
+ (NSString *) type
{
return @"GSNibFileType";