mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
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:
parent
7e3d19eea7
commit
957320e940
2 changed files with 10 additions and 1 deletions
|
@ -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
3
Gorm.m
|
@ -500,7 +500,8 @@ static NSButtonType _buttonTypeForObject( id button )
|
|||
|
||||
- (NSString*) inspectorClassName
|
||||
{
|
||||
return [self classInspectorClassName];
|
||||
// return [self classInspectorClassName];
|
||||
return @"GormNotApplicableInspector";
|
||||
}
|
||||
|
||||
- (NSString*) connectInspectorClassName
|
||||
|
|
Loading…
Reference in a new issue