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:
@@ -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 )
|
||||
|
Reference in New Issue
Block a user