From 57fc9101dc9defa96d615bae90388cfe5867588d Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Sun, 24 Nov 2002 05:03:51 +0000 Subject: [PATCH] More fixes git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15078 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 8 ++++++++ Gorm.m | 6 +++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3cbe86c6..8fa30d1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2002-11-23 Gregory John Casamento + + * 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 * Gorm.m: -[GormClassProxy classInspectorClassName]: diff --git a/Gorm.m b/Gorm.m index 61e31be4..d40184c7 100644 --- a/Gorm.m +++ b/Gorm.m @@ -500,7 +500,11 @@ static NSButtonType _buttonTypeForObject( id button ) - (NSString*) inspectorClassName { - // return [self classInspectorClassName]; + return @"GormNotApplicableInspector"; +} + +- (NSString*) classInspectorClassName +{ return @"GormNotApplicableInspector"; }