mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Corrected the inspector for GormObjectProxy
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15357 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c29826202c
commit
2caf49d1ac
3 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-12-27 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Gorm.m: -[GormObjectProxy inspectorClassName]: returns
|
||||
GormNotApplicableInspector, since we shouldn't be able to directly
|
||||
change any of the attributes on a GormObjectProxy.
|
||||
|
||||
2002-12-27 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormDocument.m: -[GormDocument parseHeader:] added code to select
|
||||
|
|
5
Gorm.m
5
Gorm.m
|
@ -142,6 +142,11 @@ NSString *GormLinkPboardType = @"GormLinkPboardType";
|
|||
}
|
||||
}
|
||||
|
||||
- (NSString*) inspectorClassName
|
||||
{
|
||||
return @"GormNotApplicableInspector";
|
||||
}
|
||||
|
||||
- (NSString*) classInspectorClassName
|
||||
{
|
||||
return @"GormNotApplicableInspector";
|
||||
|
|
|
@ -1167,7 +1167,7 @@ static NSImage *classesImage = nil;
|
|||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"WARNING anEditor = editor");
|
||||
NSDebugLog(@"WARNING anEditor = editor");
|
||||
}
|
||||
[editor activate];
|
||||
RELEASE(editor);
|
||||
|
|
Loading…
Reference in a new issue