git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16014
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wchar_t *buf = new wchar_t[nLen+1];
wxConvUTF8.MB2WC(buf, s, nLen);
buf[nLen] = 0;
+ wxString s(buf, *conv, len);
delete[] buf;
- return wxString(buf, *conv, len);
+ return s;
}
else
return wxString(s, len);
wchar_t *buf = new wchar_t[nLen+1];
wxConvUTF8.MB2WC(buf, s, nLen);
buf[nLen] = 0;
+ wxString s(buf, *conv, len);
delete[] buf;
- return wxString(buf, *conv, len);
+ return s;
}
else
return wxString(s, len);