More minor bugfixes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15077 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2002-11-24 04:55:50 +00:00
parent 7e3d19eea7
commit 957320e940
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2002-11-23 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: -[GormClassProxy classInspectorClassName]:
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>
* Palettes/0Menus/main.m: removed -[NSWindow setLevel:]

3
Gorm.m
View file

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