Kaydet (Commit) 0179d35f authored tarafından Markus Mohrhard's avatar Markus Mohrhard

workaround for DBG_UTIL XML correctness checks

The current check will always be hit as the StartXmlElement does not use
a call that puts the element on the stack. So copy the pattern for the
EndXmlElement class.

However we should work on getting rid of these ugly hacks.

Change-Id: Id1141f4afc78a0cae1e4b7accae76e6ae08b77a7
üst 0620ca9d
......@@ -1338,7 +1338,8 @@ public:
void EndXmlElement::SaveXml( XclExpXmlStream& rStrm )
{
rStrm.GetCurrentStream()->endElement( mnElement );
sax_fastparser::FSHelperPtr pStream = rStrm.GetCurrentStream();
pStream->write("</")->writeId(mnElement)->write(">");
}
class EndHeaderElement : public EndXmlElement
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment