Fixed issue w/ inspector showing "GormFirstResponder" and "GormFilesOwner" which

are internal classes.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15079 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2002-11-24 05:52:50 +00:00
parent 57fc9101dc
commit 4c8c1237dd
3 changed files with 18 additions and 2 deletions

View file

@ -1,7 +1,14 @@
2002-11-24 Gregory John Casamento <greg_casamento@yahoo.com>
* GormFilesOwner.m: -[GormFilesOwner classInspectorClassName]
implemented to return @"GormNotApplicableInspector".
* GormDocument.m: -[GormFirstResponder classInspectorClassName]
same as above.
2002-11-23 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: -[GormClassProxy inspectorClassName]:
changed to return @"GormNotApplicationInspector" so that
changed to return @"GormNotApplicableInspector" 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.
@ -9,7 +16,7 @@
2002-11-23 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: -[GormClassProxy classInspectorClassName]:
changed to return @"GormNotApplicationInspector" so that
changed to return @"GormNotApplicableInspector" 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.

View file

@ -66,6 +66,10 @@ NSString *IBWillCloseDocumentNotification = @"IBWillCloseDocumentNotification";
{
return @"GormNotApplicableInspector";
}
- (NSString*) classInspectorClassName
{
return @"GormNotApplicableInspector";
}
@end
@implementation GormFontManager

View file

@ -61,6 +61,11 @@
return @"GormFilesOwnerInspector";
}
- (NSString*) classInspectorClassName
{
return @"GormNotApplicableInspector";
}
- (void) setClassName: (NSString*)aName
{
ASSIGN(className, aName);