From 56cc72bec921efd4fe54422b25986d044dbd3070 Mon Sep 17 00:00:00 2001 From: CaS Date: Sat, 3 Jul 2004 09:02:49 +0000 Subject: [PATCH] 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 --- ChangeLog | 6 ++++-- Source/NSString.m | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index ade383465..5f74e2001 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ 2004-07-03 Richard Frith-Macdonald - * 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 diff --git a/Source/NSString.m b/Source/NSString.m index b7e545002..7caf21932 100644 --- a/Source/NSString.m +++ b/Source/NSString.m @@ -4418,7 +4418,7 @@ handle_printf_atsign (FILE *stream, result = [NSPropertyListSerialization propertyListFromData: data - mutabilityOption: NSPropertyListImmutable + mutabilityOption: NSPropertyListMutableContainers format: &format errorDescription: &error];