mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 14:10:44 +00:00
deall tempNameTable
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14846 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d1e16ff0ff
commit
57d5eb3b5f
2 changed files with 12 additions and 23 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-10-25 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GormDocument.m (-dealloc): Release tempNameTable.
|
||||
Change some NSLogs to NSDebugLogs.
|
||||
|
||||
2002-10-23 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GormDocument.m (-createClassFiles:): Set default save file
|
||||
|
|
|
@ -255,8 +255,6 @@ static NSImage *classesImage = nil;
|
|||
NSEnumerator *en = [nameTable keyEnumerator];
|
||||
NSString *key = nil;
|
||||
|
||||
// initialize the holding space for the objects to be replaced...
|
||||
// tempNameTable = [NSMutableDictionary dictionary];
|
||||
while((key = [en nextObject]) != nil)
|
||||
{
|
||||
id obj = [nameTable objectForKey: key];
|
||||
|
@ -362,7 +360,7 @@ static NSImage *classesImage = nil;
|
|||
* Method to replace custom objects with templates for archiving.
|
||||
*/
|
||||
[self _replaceObjectsWithTemplates];
|
||||
NSLog(@"*** customClassMap = %@",[classManager customClassMap]);
|
||||
NSDebugLog(@"*** customClassMap = %@",[classManager customClassMap]);
|
||||
[nameTable setObject: [classManager customClassMap] forKey: @"GSCustomClassMap"];
|
||||
|
||||
/*
|
||||
|
@ -591,6 +589,7 @@ static NSImage *classesImage = nil;
|
|||
RELEASE(savedEditors);
|
||||
RELEASE(scrollView);
|
||||
RELEASE(classesScrollView);
|
||||
RELEASE(tempNameTable);
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
|
@ -1279,21 +1278,6 @@ static NSImage *classesImage = nil;
|
|||
green: 0.737255
|
||||
blue: 0.576471
|
||||
alpha: 1.0 ];
|
||||
NSColor *darkSalmonColor =
|
||||
[NSColor colorWithCalibratedRed: 0.568627
|
||||
green: 0.494118
|
||||
blue: 0.384314
|
||||
alpha: 1.0 ];
|
||||
NSColor *lightGreyBlueColor =
|
||||
[NSColor colorWithCalibratedRed: 0.450980
|
||||
green: 0.450980
|
||||
blue: 0.521569
|
||||
alpha: 1.0 ];
|
||||
NSColor *darkGreyBlueColor =
|
||||
[NSColor colorWithCalibratedRed: 0.333333
|
||||
green: 0.333333
|
||||
blue: 0.384314
|
||||
alpha: 1.0 ];
|
||||
|
||||
classManager = [[GormClassManager alloc] init];
|
||||
classEditor = [[GormClassEditor alloc] initWithDocument: self];
|
||||
|
@ -1518,7 +1502,7 @@ static NSImage *classesImage = nil;
|
|||
|
||||
- (id) instantiateClass: (id)sender
|
||||
{
|
||||
NSLog(@"document -> instantiateClass: ");
|
||||
NSDebugLog(@"document -> instantiateClass: ");
|
||||
|
||||
if ([[selectionView selectedCell] tag] == 3)
|
||||
{
|
||||
|
@ -1723,10 +1707,10 @@ static NSImage *classesImage = nil;
|
|||
object: self];
|
||||
|
||||
// get the custom class map and set it into the class manager...
|
||||
NSLog(@"GSCustomClassMap = %@",[[c nameTable] objectForKey: @"GSCustomClassMap"]);
|
||||
NSDebugLog(@"GSCustomClassMap = %@",[[c nameTable] objectForKey: @"GSCustomClassMap"]);
|
||||
[classManager setCustomClassMap: [[c nameTable] objectForKey: @"GSCustomClassMap"]];
|
||||
|
||||
NSLog(@"nameTable = %@",[c nameTable]);
|
||||
NSDebugLog(@"nameTable = %@",[c nameTable]);
|
||||
|
||||
return self;
|
||||
}
|
||||
|
@ -2209,8 +2193,8 @@ static NSImage *classesImage = nil;
|
|||
|
||||
[self beginArchiving];
|
||||
|
||||
NSLog(@"nametable : %@", nameTable);
|
||||
NSLog(@"connections : %@", connections);
|
||||
NSDebugLog(@"nametable : %@", nameTable);
|
||||
NSDebugLog(@"connections : %@", connections);
|
||||
|
||||
archiverData = [NSMutableData dataWithCapacity: 0];
|
||||
archiver = [[NSArchiver alloc] initForWritingWithMutableData: archiverData];
|
||||
|
|
Loading…
Reference in a new issue