Make changes to correctly decode firstItem and secondItem.

This commit is contained in:
Gregory John Casamento 2020-05-26 23:59:00 -04:00
parent 7faefbb0dd
commit 44a3512ae2

View file

@ -224,7 +224,7 @@ static NSArray *XmlBoolDefaultYes = nil;
RETAIN(ClassNamePrefixes);
XmlReferenceAttributes = [NSArray arrayWithObjects: @"headerView", @"initialItem",
@"selectedItem", nil];
@"selectedItem", @"firstItem", @"secondItem", nil];
RETAIN(XmlReferenceAttributes);
XmlConnectionRecordTags = [NSArray arrayWithObjects: @"action", @"outlet", @"binding", nil];
@ -2777,6 +2777,12 @@ didStartElement: (NSString*)elementName
return num;
}
- (id) decodeConstraintItem: (GSXibElement *)element
{
NSLog(@"%@", element);
return nil;
}
- (id) objectForXib: (GSXibElement*)element
{
id object = [super objectForXib: element];