Minor correct to previous commit...

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14150 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2002-07-15 00:52:39 +00:00
parent 51b1d7f963
commit 5560ebae12
2 changed files with 6 additions and 4 deletions

6
Gorm.m
View file

@ -755,8 +755,10 @@ NSLog(@"StartupTime %f", [startDate timeIntervalSinceNow]);
forKey: @"ApplicationDescription"];
[d setObject: @"Gorm 0.1" forKey: @"ApplicationRelease"];
[d setObject: @"0.1 Feb 2000" forKey: @"FullVersionID"];
[d setObject: [NSArray arrayWithObject:
@"Richard Frith-Macdonald <rfm@gnu.org>"]
[d setObject: [NSArray arrayWithObjects:
@"Gregory John Casamento <greg_casamento@yahoo.com>",
@"Richard Frith-Macdonald <rfm@gnu.org>",
nil]
forKey: @"Authors"];
// [d setObject: @"See http://www.gnustep.org" forKey: @"URL"];
[d setObject: @"Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc."

View file

@ -121,8 +121,8 @@ NSString *IBClassNameChangedNotification = @"IBClassNameChangedNotification";
- (NSString *) addNewOutletToClassNamed: (NSString *)name
{
NSDictionary *classInfo = [classInformation objectForKey: name];
NSArray *array = [classInfo objectForKey: @"Actions"];
NSArray *extra = [classInfo objectForKey: @"ExtraActions"];
NSArray *array = [classInfo objectForKey: @"Outlets"];
NSArray *extra = [classInfo objectForKey: @"ExtraOutlets"];
NSMutableArray *combined = [NSMutableArray arrayWithArray: array];
NSString *new = @"newOutlet";
int i = 1;