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"; }