summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-03-16 15:33:25 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-03-23 09:18:58 +0100
commit2a081a0f9ba8c73a0eba55020b6c39ee7778f9c9 (patch)
treefa9b9d1e978c7ed22c58bc48930923c5c058820d /tools/source
parent892542426fb69bbb19f0a5cb9338f67074bd3add (diff)
Rectangle::toString(): output position, then size
This order seems to be less confusing. Change-Id: I95a7e3e2f6244915c820bb86e67745a777714e2d
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/generic/gen.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/gen.cxx b/tools/source/generic/gen.cxx
index e2a61c5f56a8..925d4d61e866 100644
--- a/tools/source/generic/gen.cxx
+++ b/tools/source/generic/gen.cxx
@@ -198,7 +198,7 @@ SvStream& WriteRectangle( SvStream& rOStream, const Rectangle& rRect )
OString Rectangle::toString() const
{
std::stringstream ss;
- ss << getWidth() << ", " << getHeight() << ", " << getX() << ", " << getY();
+ ss << getX() << ", " << getY() << ", " << getWidth() << ", " << getHeight();
return ss.str().c_str();
}