const wxString& textdata,
const wxString& mimetype)
{
- AddFileWithMimeType
- (
- filename,
- static_cast<const char *>(textdata.To8BitData()),
- data.length(),
- mimetype
- );
+ const wxCharBuffer buf(textdata.To8BitData());
+
+ AddFileWithMimeType(filename, buf.data(), buf.length(), mimetype);
}
return;
wxMemoryOutputStream mems;
- if ( image.Ok() && image.SaveFile(mems, type) )
+ if ( image.IsOk() && image.SaveFile(mems, type) )
{
m_Hash[filename] = new wxMemoryFSFile
(