Kaydet (Commit) ca4cbae3 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Fix for one of the filter tests.

Occasionally characters are assembled via multiple calls to Characters() esp
when the content includes encoded characters and/or XML comments.

Change-Id: I1b6d1e7490350add77388330b183504c24deaab4
üst 9e9f8637
......@@ -38,7 +38,7 @@ void ScXMLCellTextParaContext::EndElement()
void ScXMLCellTextParaContext::Characters(const OUString& rChars)
{
maContent = rChars;
maContent += rChars;
}
SvXMLImportContext* ScXMLCellTextParaContext::CreateChildContext(
......
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