removed default conv argument in wxString(const char *) ctor in Unicode build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17670 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -314,7 +314,7 @@ public:
|
||||
// from multibyte string
|
||||
// (NB: nLength is right now number of Unicode characters, not
|
||||
// characters in psz! So try not to use it yet!)
|
||||
wxString(const char *psz, wxMBConv& conv = wxConvLibc, size_t nLength = wxSTRING_MAXLEN);
|
||||
wxString(const char *psz, wxMBConv& conv, size_t nLength = wxSTRING_MAXLEN);
|
||||
// from wxWCharBuffer (i.e. return from wxGetString)
|
||||
wxString(const wxWCharBuffer& psz)
|
||||
{ InitWith(psz, 0, wxSTRING_MAXLEN); }
|
||||
|
Reference in New Issue
Block a user