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:
parent
4c9147881b
commit
a795a5fd99
@ -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 );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user