From 492b2e2933e3e82174641d47df6ed8f137b205fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Fri, 26 Aug 2005 15:02:05 +0000 Subject: [PATCH] PrintToStream output now matches R5 git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14074 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/Rect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/interface/Rect.cpp b/src/kits/interface/Rect.cpp index fe00550d06..cc17a9a70e 100644 --- a/src/kits/interface/Rect.cpp +++ b/src/kits/interface/Rect.cpp @@ -214,7 +214,7 @@ BRect::OffsetToCopy(float dx, float dy) void BRect::PrintToStream() const { - printf("BRect(%.1f, %.1f, %.1f, %.1f)\n", left, top, right, bottom); + printf("BRect(l:%.1f, t:%.1f, r:%.1f, b:%.1f)\n", left, top, right, bottom); } //------------------------------------------------------------------------------ bool