Merge pull request #30 from gnustep/gorm_xib_fixes

This commit is contained in:
Gregory Casamento 2023-08-27 15:08:45 -04:00 committed by GitHub
commit 04455dc1aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 350 additions and 230 deletions

File diff suppressed because it is too large Load diff

View file

@ -432,7 +432,13 @@
className = [classManager nonCustomSuperClassOf: className];
}
clz = [unarchiver classForClassName: className];
// [obj setBaseWindowClass: clz];
}
else if ([obj isKindOfClass: [NSMatrix class]])
{
if ([obj cellClass] == NULL)
{
[obj setCellClass: [NSButtonCell class]];
}
}
else if ([obj respondsToSelector: @selector(setTarget:)] &&
[obj respondsToSelector: @selector(setAction:)] &&