mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
Remove ib from ib:member-type because it generates ib_1 for some reason, this is a minor issue
This commit is contained in:
parent
3135a57a6a
commit
8df10b161f
1 changed files with 2 additions and 2 deletions
|
@ -3335,7 +3335,7 @@ static void _real_close(GormDocument *self,
|
|||
className = [obj className];
|
||||
}
|
||||
|
||||
attr = [NSXMLNode attributeWithName: @"class" stringValue: className];
|
||||
attr = [NSXMLNode attributeWithName: @"ib:class" stringValue: className];
|
||||
[group addAttribute: attr];
|
||||
[node addChild: group];
|
||||
|
||||
|
@ -3493,7 +3493,7 @@ static void _real_close(GormDocument *self,
|
|||
|
||||
NSXMLElement *body = [NSXMLNode elementWithName: @"body"];
|
||||
NSXMLElement *group = [NSXMLNode elementWithName: @"group"];
|
||||
attr = [NSXMLElement attributeWithName: @"member-type" stringValue: @"objects"];
|
||||
attr = [NSXMLNode attributeWithName: @"ib_member-type" stringValue: @"objects"]; // not sure why generates ib_1 when using a colon
|
||||
[group addAttribute: attr];
|
||||
[body addChild: group];
|
||||
|
||||
|
|
Loading…
Reference in a new issue