mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
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:
parent
57fc9101dc
commit
4c8c1237dd
3 changed files with 18 additions and 2 deletions
11
ChangeLog
11
ChangeLog
|
@ -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.
|
||||
|
|
|
@ -66,6 +66,10 @@ NSString *IBWillCloseDocumentNotification = @"IBWillCloseDocumentNotification";
|
|||
{
|
||||
return @"GormNotApplicableInspector";
|
||||
}
|
||||
- (NSString*) classInspectorClassName
|
||||
{
|
||||
return @"GormNotApplicableInspector";
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation GormFontManager
|
||||
|
|
|
@ -61,6 +61,11 @@
|
|||
return @"GormFilesOwnerInspector";
|
||||
}
|
||||
|
||||
- (NSString*) classInspectorClassName
|
||||
{
|
||||
return @"GormNotApplicableInspector";
|
||||
}
|
||||
|
||||
- (void) setClassName: (NSString*)aName
|
||||
{
|
||||
ASSIGN(className, aName);
|
||||
|
|
Loading…
Reference in a new issue