From 2a081a0f9ba8c73a0eba55020b6c39ee7778f9c9 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 16 Mar 2015 15:33:25 +0100 Subject: Rectangle::toString(): output position, then size This order seems to be less confusing. Change-Id: I95a7e3e2f6244915c820bb86e67745a777714e2d --- include/tools/gen.hxx | 1 + 1 file changed, 1 insertion(+) (limited to 'include/tools/gen.hxx') diff --git a/include/tools/gen.hxx b/include/tools/gen.hxx index b17cb196dd87..c5d898b91296 100644 --- a/include/tools/gen.hxx +++ b/include/tools/gen.hxx @@ -440,6 +440,7 @@ public: void setY( long n ) { nBottom += n-nTop; nTop = n; } void setWidth( long n ) { nRight = nLeft + n; } void setHeight( long n ) { nBottom = nTop + n; } + /// Returns the string representation of the rectangle, format is "x, y, width, height". rtl::OString toString() const; private: -- cgit