mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
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:
parent
cbba5cb5c7
commit
1039379c21
2 changed files with 5 additions and 16 deletions
|
@ -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
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue