Make decoded property list containers mutable.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19672 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2004-07-03 09:02:49 +00:00
parent f3192dce00
commit 56cc72bec9
2 changed files with 5 additions and 3 deletions

View file

@ -1,7 +1,9 @@
2004-07-03 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/plmerge.m: Bugfix ... was attempting to set values in a
dictionary which was not mutable.
* Tools/plmerge.m: Portability ... was attempting to set values in a
dictionary which may not be mutable.
* Source/NSString.m: ([propertyList]) make decoded containers mutable
for compatibility with current MacOS-X
2004-07-02 Richard Frith-Macdonald <rfm@gnu.org>

View file

@ -4418,7 +4418,7 @@ handle_printf_atsign (FILE *stream,
result = [NSPropertyListSerialization
propertyListFromData: data
mutabilityOption: NSPropertyListImmutable
mutabilityOption: NSPropertyListMutableContainers
format: &format
errorDescription: &error];