Fix for % symbols going missing from style parameter
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
03bec791dd
commit
5249673498
@ -825,7 +825,7 @@ bool wxRichTextXMLHandler::ExportXML(wxOutputStream& stream, wxMBConv* convMem,
|
||||
}
|
||||
else
|
||||
{
|
||||
OutputString(stream, wxString::Format(wxT(" imagetype=\"%d\"") + style + wxT(">"), (int) imageObj.GetImageBlock().GetImageType()));
|
||||
OutputString(stream, wxString::Format(wxT(" imagetype=\"%d\""), (int) imageObj.GetImageBlock().GetImageType()) + style + wxT(">"));
|
||||
}
|
||||
|
||||
OutputIndentation(stream, indent+1);
|
||||
|
Loading…
Reference in New Issue
Block a user