mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Fix encoding issue, formatting issues, per review
This commit is contained in:
parent
d4d60dd5de
commit
cd52649076
1 changed files with 1 additions and 8 deletions
|
@ -326,6 +326,7 @@ static NSArray *XmlBoolDefaultYes = nil;
|
|||
@"beginningViews", @"NSStackViewBeginningContainer", // NSStackView
|
||||
@"middleViews", @"NSStackViewMiddleContainer",
|
||||
@"endViews", @"NSStackViewEndContainer",
|
||||
@"collectionViewLayout", @"NSCollectionViewLayout",
|
||||
// @"primaryBackgroundColor", @"NSBackgroundColors",
|
||||
nil];
|
||||
RETAIN(XmlKeyMapTable);
|
||||
|
@ -3325,10 +3326,6 @@ didStartElement: (NSString*)elementName
|
|||
{
|
||||
object = [self decodeObjectForKey: @"primaryBackgroundColor"];
|
||||
}
|
||||
else if ([@"NSCollectionViewLayout" isEqualToString: key])
|
||||
{
|
||||
object = [self decodeObjectForKey: @"collectionViewLayout"];
|
||||
}
|
||||
else if (([@"NSSearchButtonCell" isEqualToString: key]) ||
|
||||
([@"NSCancelButtonCell" isEqualToString: key]))
|
||||
{
|
||||
|
@ -3554,10 +3551,6 @@ didStartElement: (NSString*)elementName
|
|||
{
|
||||
hasValue = [currentElement elementForKey: @"primaryBackgroundColor"] != nil;
|
||||
}
|
||||
else if ([@"NSCollectionViewLayout" isEqualToString: key])
|
||||
{
|
||||
hasValue = [currentElement elementForKey: @"collectionViewLayout"] != nil;
|
||||
}
|
||||
else if (([@"NSIntercellSpacingHeight" isEqualToString: key]) ||
|
||||
([@"NSIntercellSpacingWidth" isEqualToString: key]))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue