https://bugs.freedesktop.org/show_bug.cgi?id=57950
Stephan Bergmann <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Stephan Bergmann <[email protected]> --- (In reply to comment #0) In > rtl::OUStringBuffer aName(msSeed); > aName.append(++mnImportedGraphicsCount); > aName.append(": "); > aName.append(rFixed); > pFrmFmt->SetName(aName.makeStringAndClear()); to > pFrmFmt->SetName(OUString::valueOf(++mnImportedGraphicsCount) + ": " + > rFixed); note that an initial "msSeed +" is missing from the converted, unless msSeed is an integer, in which case it would have preset the capacity of the OUStringBuffer to something other than the default 16. -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
