https://bz.apache.org/ooo/show_bug.cgi?id=91028
--- Comment #12 from [email protected] --- (In reply to Peter from comment #11) > And why we do not define rStr as a Vector Container? > It is C++ after all. LibreOffice was planning to change the various custom containers to standard C++ classes at one stage, like the UNO Sequence to ::std::vector. Don't know how that went. But ByteString isn't a Vector, it's a string. The C++ standard equivalent would be ::std::string. I don't think we should be generally changing ByteString to ::std::string though, because sometimes it is intended for places that want limited length strings. The 32 bit length ::rtl::OString and ::rtl::OUString would be better candidates. -- You are receiving this mail because: You are the assignee for the issue. You are on the CC list for the issue.
