fix consruction of string

thanks to clang for finding this one

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73270 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2012-12-26 17:32:38 +00:00
parent b97d6fb118
commit 63a4b41eda

View File

@@ -2537,7 +2537,8 @@ wxArrayStringProperty::ArrayStringToString( wxString& dst,
if ( flags & Escape )
{
preas = delimiter;
pdr = wxS("\\") + static_cast<wchar_t>(delimiter);
pdr = wxS("\\");
pdr += delimiter;
}
if ( itemCount )