mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
OSX compat update
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38552 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d1e8611766
commit
db4c97c692
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-05-26 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* GSString.m: Fix sign extension bug
|
||||
* Source/NSXMLParser.m: Update to more exactly match OSX behavior
|
||||
|
||||
2015-05-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSXMLParser.m: Use libxml2 if available.
|
||||
|
|
|
@ -144,7 +144,7 @@ static NSNull *null = nil;
|
|||
{
|
||||
[_delegate parser: _owner
|
||||
didStartElement: elementName
|
||||
namespaceURI: href
|
||||
namespaceURI: (nil == href) ? @"" : href
|
||||
qualifiedName: qName
|
||||
attributes: elementAttributes];
|
||||
}
|
||||
|
@ -199,7 +199,7 @@ static NSNull *null = nil;
|
|||
{
|
||||
[_delegate parser: _owner
|
||||
didEndElement: elementName
|
||||
namespaceURI: href
|
||||
namespaceURI: (nil == href) ? @"" : href
|
||||
qualifiedName: qName];
|
||||
}
|
||||
else
|
||||
|
@ -306,7 +306,7 @@ static NSNull *null = nil;
|
|||
[_delegate parser: _owner
|
||||
foundAttributeDeclarationWithName: name
|
||||
forElement: nameElement
|
||||
type: nil // FIXME
|
||||
type: @"" // FIXME
|
||||
defaultValue: value];
|
||||
}
|
||||
|
||||
|
@ -315,7 +315,7 @@ static NSNull *null = nil;
|
|||
{
|
||||
[_delegate parser: _owner
|
||||
foundElementDeclarationWithName: name
|
||||
model: nil]; // FIXME
|
||||
model: @""]; // FIXME
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue