compilation fix for STL/!UNICODE case (closes #10846)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60771 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e3d6cbb9aa
commit
fa2b06e7b1
@ -186,15 +186,13 @@ void wxMemoryFSHandlerBase::AddFileWithMimeType(const wxString& filename,
|
||||
const wxString& textdata,
|
||||
const wxString& mimetype)
|
||||
{
|
||||
#if wxUSE_UNICODE
|
||||
const wxScopedCharBuffer data(textdata.To8BitData());
|
||||
#else
|
||||
const wxString& data = textdata;
|
||||
#endif
|
||||
|
||||
AddFileWithMimeType(filename,
|
||||
static_cast<const char *>(data), data.length(),
|
||||
mimetype);
|
||||
AddFileWithMimeType
|
||||
(
|
||||
filename,
|
||||
static_cast<const char *>(textdata.To8BitData()),
|
||||
data.length(),
|
||||
mimetype
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user