mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Make changes to correctly decode firstItem and secondItem.
This commit is contained in:
parent
7faefbb0dd
commit
44a3512ae2
1 changed files with 7 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue