Kaydet (Commit) 12e64683 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

OUString::replaceAll() is not in-place

Change-Id: I92c639b8b391dd07c07835241f8530e71ef6e885
üst ecb1850b
......@@ -1097,7 +1097,7 @@ long SwWW8ImplReader::Read_Field(WW8PLCFManResult* pRes)
// Thus, delete character 0x01, which stands for such a graphic.
if (aF.nId==51) //#i56768# only do it for the MACROBUTTON field, since DropListFields need the 0x01.
{
aStr.replaceAll(OUString(0x01), "");
aStr = aStr.replaceAll(OUString(0x01), "");
}
eF_ResT eRes = (this->*aWW8FieldTab[aF.nId])( &aF, aStr );
......
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