Fixed backslash escaping in wxArrayStringProperty::StringToValue()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62506 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli 2009-10-28 15:57:58 +00:00
parent 4c9147881b
commit a795a5fd99

View File

@ -2574,7 +2574,7 @@ bool wxArrayStringProperty::StringToValue( wxVariant& variant, const wxString& t
// Need to replace backslashes with empty characters
// (opposite what is done in GenerateValueString).
token.Replace ( wxS("\\"), wxEmptyString, true );
token.Replace ( wxS("\\\\"), wxS("\\"), true );
arr.Add( token );