reverted previous change in init.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21578 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-07-31 12:35:47 +00:00
parent d0ab85ac95
commit 22b1aed493
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2005-07-31 08:43 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormPrivate.m: Reverted previous change in init.
2005-07-30 15:57 Gregory John Casamento <greg_casamento@yahoo.com>
* English.lproj/GormPreferences.gorm: Changed class hierarchy. Also

View file

@ -179,7 +179,7 @@ static BOOL _isInInterfaceBuilder = NO;
// define the class proxy...
@implementation GormClassProxy
- (id) initWithClassName: (NSString*)n
- (id) initWithClassName: (NSString *)n
{
self = [super init];
if (self != nil)
@ -187,11 +187,11 @@ static BOOL _isInInterfaceBuilder = NO;
if([n isKindOfClass: [NSString class]])
{
// create a copy.
name = [[NSString alloc] initWithString: n];
ASSIGN(name, n);
}
else
{
NSLog(@"Attempt to add a class proxy with className=%@",n);
NSLog(@"Attempt to add a class proxy with className = %@",n);
}
}
return self;