tools/source/generic/gen.cxx | 3 +++ 1 file changed, 3 insertions(+) New commits: commit c0c678ea9212abca4c70c737028c20073bb53b9d Author: Tor Lillqvist <t...@collabora.com> Date: Tue Sep 27 06:22:27 2016 +0300
Add note that Rectangle::toString() format now has a stability requirement De facto, at least. Change-Id: Ie83f275d376841a7e4e9f7e80895165fe70a69b9 diff --git a/tools/source/generic/gen.cxx b/tools/source/generic/gen.cxx index 499ab10..96bbd91 100644 --- a/tools/source/generic/gen.cxx +++ b/tools/source/generic/gen.cxx @@ -193,6 +193,9 @@ SvStream& WriteRectangle( SvStream& rOStream, const Rectangle& rRect ) OString Rectangle::toString() const { std::stringstream ss; + // Note that this is not just used for debugging output but the + // format is parsed by external code (passed in callbacks to + // LibreOfficeKit clients). So don't change. ss << getX() << ", " << getY() << ", " << getWidth() << ", " << getHeight(); return ss.str().c_str(); } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits