-/*
-wxWCharBuffer buffer(nLen + 1);
-
- //Convert the string
- size_t nActualLength = wxWcstr(buffer.data(), psz, nLen, conv);
- if ( !Alloc(nActualLength + 1) )
- {
- wxFAIL_MSG(wxT("Out of memory in wxString"));
- }
- else
- {
- //Copy the data
- assign(buffer.data(), nActualLength);
- }
-*/