git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13024
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool wxTextCtrl::StreamIn(const wxString& value, wxFontEncoding encoding)
{
bool wxTextCtrl::StreamIn(const wxString& value, wxFontEncoding encoding)
{
// we have to use EM_STREAMIN to force richedit control 2.0+ to show any
// text in the non default charset - otherwise it thinks it knows better
// than we do and always shows it in the default one
// we have to use EM_STREAMIN to force richedit control 2.0+ to show any
// text in the non default charset - otherwise it thinks it knows better
// than we do and always shows it in the default one
// finally, stream it in the control
const wchar_t *wpc = wchBuf;
// finally, stream it in the control
const wchar_t *wpc = wchBuf;
+#else
+ const wchar_t *wpc = value.c_str();
+#endif
EDITSTREAM eds;
wxZeroMemory(eds);
EDITSTREAM eds;
wxZeroMemory(eds);