]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed backslash escaping in wxArrayStringProperty::StringToValue()
authorJaakko Salli <jaakko.salli@dnainternet.net>
Wed, 28 Oct 2009 15:57:58 +0000 (15:57 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Wed, 28 Oct 2009 15:57:58 +0000 (15:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62506 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/propgrid/props.cpp

index 4a5442bf9c9cd6acdf739365c66eb3d6cbb6f90a..ea01f9b7a2dc1cf796c217db489eb5ebcf3162ca 100644 (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 );