Some small changes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@16879 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2003-06-07 16:33:59 +00:00
parent 7eaef5f1e7
commit 78484ab25d
2 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@
{
extraActions = [[NSMutableArray alloc] initWithCapacity: 1];
[info setObject: extraActions forKey: @"ExtraActions"];
RELEASE(extraActions);
// RELEASE(extraActions);
}
[extraActions addObject: anAction];
if ([allActions containsObject: anAction] == NO)
@ -203,7 +203,7 @@
{
extraOutlets = [[NSMutableArray alloc] initWithCapacity: 1];
[info setObject: extraOutlets forKey: @"ExtraOutlets"];
RELEASE(extraOutlets);
// RELEASE(extraOutlets);
}
[extraOutlets addObject: anOutlet];
[[info objectForKey: @"AllOutlets"] addObject: anOutlet];
@ -224,7 +224,7 @@
{
extraActions = [[NSMutableArray alloc] initWithCapacity: 1];
[info setObject: extraActions forKey: @"ExtraActions"];
RELEASE(extraActions);
// RELEASE(extraActions);
}
[extraActions addObject: anAction];
@ -251,7 +251,7 @@
{
extraOutlets = [[NSMutableArray alloc] initWithCapacity: 1];
[info setObject: extraOutlets forKey: @"ExtraOutlets"];
RELEASE(extraOutlets);
// RELEASE(extraOutlets);
}
[extraOutlets addObject: anOutlet];

View file

@ -4,7 +4,7 @@
*
* Author: Gregory John Casamento <greg_casamento@yahoo.com>
* Date: 2003
*
*
* This file is part of GNUstep.
*
* This program is free software; you can redistribute it and/or modify