summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-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();
}