mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
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:
parent
2840feeede
commit
a3d7978be3
2 changed files with 5 additions and 3 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -4418,7 +4418,7 @@ handle_printf_atsign (FILE *stream,
|
|||
|
||||
result = [NSPropertyListSerialization
|
||||
propertyListFromData: data
|
||||
mutabilityOption: NSPropertyListImmutable
|
||||
mutabilityOption: NSPropertyListMutableContainers
|
||||
format: &format
|
||||
errorDescription: &error];
|
||||
|
||||
|
|
Loading…
Reference in a new issue