mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
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:
parent
957320e940
commit
57fc9101dc
2 changed files with 13 additions and 1 deletions
|
@ -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
6
Gorm.m
|
@ -500,7 +500,11 @@ static NSButtonType _buttonTypeForObject( id button )
|
|||
|
||||
- (NSString*) inspectorClassName
|
||||
{
|
||||
// return [self classInspectorClassName];
|
||||
return @"GormNotApplicableInspector";
|
||||
}
|
||||
|
||||
- (NSString*) classInspectorClassName
|
||||
{
|
||||
return @"GormNotApplicableInspector";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue