mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 03:31:01 +00:00
Add code to filter out certain attributes that were causing Xcode to crash when loading the generated xib
This commit is contained in:
parent
938fa07da3
commit
d26139d223
1 changed files with 2 additions and 2 deletions
|
@ -313,7 +313,7 @@ static NSUInteger _count = INT_MAX;
|
|||
// @"menu", @"nextKeyView", @"owner", @"subviews", @"contentView", @"previousKeyView",
|
||||
@"attributedStringValue", @"stringValue", @"objectValue", @"menuView", @"menu",
|
||||
@"attributedAlternateTitle", @"attributedTitle", @"miniwindowImage", @"menuItem",
|
||||
@"showsResizeIndicator",
|
||||
@"showsResizeIndicator", @"titleFont",
|
||||
nil];
|
||||
/*
|
||||
_methodReturnTypes =
|
||||
|
@ -1170,7 +1170,7 @@ static NSUInteger _count = INT_MAX;
|
|||
NSString *ctypeString = [NSString stringWithCString: ctype
|
||||
encoding: NSUTF8StringEncoding];
|
||||
NSString *type = [_signatures objectForKey: ctypeString];
|
||||
NSLog(@"%@ : %@ -> %@ - %@", obj, name, type, ctypeString);
|
||||
// NSLog(@"%@ : %@ -> %@ - %@", obj, name, type, ctypeString);
|
||||
|
||||
if (type != nil)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue