[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
Re: Fix, Base, NSXMLParser (SetValueForKey())
From:
Richard Frith-Macdonald
Subject:
Re: Fix, Base, NSXMLParser (SetValueForKey())
Date:
2009年6月24日 06:28:46 +0100
On 24 Jun 2009, at 03:19, Georg Fleischmann wrote:
here is a suggestion of a fix for NSXMLParser SetValueForKey() to
avoid Newline characters in Nib strings to be swallowed.
I just added a (forgotten?) break, so a string will be collected
including the newline characters it contains.
For me it works fine - my Cocoa Nibs now display strings including
newline characters. I'm not aware of any side effects.
Best wishes,
Georg Fleischmann
*** Source/NSXMLParser.m.old 2009年05月12日 13:30:54.000000000 +0800
--- Source/NSXMLParser.m 2009年06月23日 17:39:01.000000000 +0800
***************
*** 1235,1240 ****
--- 1235,1241 ----
case '\n':
this->line++;
this->column = 0;
+ break;
case EOF:
case '<':
Thanks. I fixed that in svn.