mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
Fix issue with class instantiation
This commit is contained in:
parent
9a8bed57ff
commit
405c345ab1
1 changed files with 2 additions and 2 deletions
|
@ -540,14 +540,14 @@ static NSImage *fileImage = nil;
|
||||||
{
|
{
|
||||||
NSArray *old;
|
NSArray *old;
|
||||||
BOOL newObject = NO;
|
BOOL newObject = NO;
|
||||||
|
/*
|
||||||
if ([self containsObject: anObject] &&
|
if ([self containsObject: anObject] &&
|
||||||
[anObject isKindOfClass: [NSWindow class]] == NO &&
|
[anObject isKindOfClass: [NSWindow class]] == NO &&
|
||||||
[anObject isKindOfClass: [NSPanel class]] == NO)
|
[anObject isKindOfClass: [NSPanel class]] == NO)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
// Modify the document whenever something is added...
|
// Modify the document whenever something is added...
|
||||||
[self touch];
|
[self touch];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue