More fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15078 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2002-11-24 05:03:51 +00:00
parent 957320e940
commit 57fc9101dc
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2002-11-23 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: -[GormClassProxy inspectorClassName]:
changed to return @"GormNotApplicationInspector" so that
when a user creates a new subclass in the class editor an
inspector no longer appears which contains "GormClassProxy"
which is an internal class.
2002-11-23 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: -[GormClassProxy classInspectorClassName]:

6
Gorm.m
View file

@ -500,7 +500,11 @@ static NSButtonType _buttonTypeForObject( id button )
- (NSString*) inspectorClassName
{
// return [self classInspectorClassName];
return @"GormNotApplicableInspector";
}
- (NSString*) classInspectorClassName
{
return @"GormNotApplicableInspector";
}