Corrected the inspector for GormObjectProxy

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15357 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2002-12-27 23:57:35 +00:00
parent c29826202c
commit 2caf49d1ac
3 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2002-12-27 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: -[GormObjectProxy inspectorClassName]: returns
GormNotApplicableInspector, since we shouldn't be able to directly
change any of the attributes on a GormObjectProxy.
2002-12-27 Gregory John Casamento <greg_casamento@yahoo.com>
* GormDocument.m: -[GormDocument parseHeader:] added code to select

5
Gorm.m
View file

@ -142,6 +142,11 @@ NSString *GormLinkPboardType = @"GormLinkPboardType";
}
}
- (NSString*) inspectorClassName
{
return @"GormNotApplicableInspector";
}
- (NSString*) classInspectorClassName
{
return @"GormNotApplicableInspector";

View file

@ -1167,7 +1167,7 @@ static NSImage *classesImage = nil;
}
else
{
NSLog(@"WARNING anEditor = editor");
NSDebugLog(@"WARNING anEditor = editor");
}
[editor activate];
RELEASE(editor);