From: znek Date: Sat, 30 Oct 2004 13:47:18 +0000 (+0000) Subject: Bugfix X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8230e1dd2178f318f391471e6bb11f23470e2e43;p=sope Bugfix git-svn-id: http://svn.opengroupware.org/SOPE/trunk@327 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- diff --git a/sope-xml/SaxObjC/ChangeLog b/sope-xml/SaxObjC/ChangeLog index edfdf1ab..5a687d7b 100644 --- a/sope-xml/SaxObjC/ChangeLog +++ b/sope-xml/SaxObjC/ChangeLog @@ -1,5 +1,8 @@ 2004-10-30 Marcus Mueller + * SaxObjectDecoder.m: fixed typo that prevented compile on non + Apple Foundation (v4.3.43) + * SaxObjectDecoder.m: provide fix for discovering mutable array on Apple/CoreFoundation - this is rather disturbing, but Apple really broke the concept of mutability for NSArray/NSDictionary. (v4.3.42) diff --git a/sope-xml/SaxObjC/SaxObjectModel.m b/sope-xml/SaxObjC/SaxObjectModel.m index 8e150097..b85c5357 100644 --- a/sope-xml/SaxObjC/SaxObjectModel.m +++ b/sope-xml/SaxObjC/SaxObjectModel.m @@ -60,8 +60,8 @@ static Class NSCFArrayClass = Nil; if (isInitialized) return; isInitialized = YES; NSCFArrayClass = NSClassFromString(@"NSCFArray"); -#endif } +#endif + (NSArray *)saxMappingSearchPathes { if (searchPathes == nil) { diff --git a/sope-xml/SaxObjC/Version b/sope-xml/SaxObjC/Version index 6f16b3c2..7444d624 100644 --- a/sope-xml/SaxObjC/Version +++ b/sope-xml/SaxObjC/Version @@ -1,3 +1,3 @@ # $Id$ -SUBMINOR_VERSION:=42 +SUBMINOR_VERSION:=43