diff --git a/include/wx/string.h b/include/wx/string.h index 96a2184a64..6ba40254f7 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -359,6 +359,9 @@ public: // from C string (for compilers using unsigned char) wxString(const unsigned char* psz, size_t nLength = wxSTRING_MAXLEN) { InitWith((const char*)psz, 0, nLength); } + // from multibyte string + wxString(const char *psz, wxMBConv& WXUNUSED(conv), size_t nLength = wxSTRING_MAXLEN) + { InitWith(psz, 0, nLength); } // from wide (Unicode) string wxString(const wchar_t *pwz); // from wxCharBuffer