mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Fix typo with GormCustomView in object proxies list
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@11085 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b316362eef
commit
c4b371c61b
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-10-05 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GormDocument.m (-loadDocument:): Typo fix - don't include
|
||||
GormCustomView in object proxies list.
|
||||
|
||||
2001-10-04 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* GormClassManager.m (-renameClass:): Change sender method to
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
*/
|
||||
|
||||
#include "GormPrivate.h"
|
||||
#import "GormClassManager.h"
|
||||
#include "GormClassManager.h"
|
||||
#include "GormCustomView.h"
|
||||
|
||||
NSString *IBDidOpenDocumentNotification = @"IBDidOpenDocumentNotification";
|
||||
NSString *IBWillSaveDocumentNotification = @"IBWillSaveDocumentNotification";
|
||||
|
@ -1237,7 +1238,7 @@ static NSImage *classesImage = nil;
|
|||
[[self openEditorForObject: obj] activate];
|
||||
}
|
||||
else if ([obj isKindOfClass: [GSNibItem class]] == YES
|
||||
&& [obj isKindOfClass: [GSCustomView class]] == NO)
|
||||
&& [obj isKindOfClass: [GormCustomView class]] == NO)
|
||||
{
|
||||
[objectsView addObject: obj];
|
||||
//[[self openEditorForObject: obj] activate];
|
||||
|
|
Loading…
Reference in a new issue