From 032d13f49aad374db266392c9cdf7204be44621b Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Mon, 8 Sep 2008 13:27:31 +0000 Subject: [PATCH] (gcc4) local variable shadows a parameter git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27379 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/diskusage/ControlsView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/diskusage/ControlsView.cpp b/src/apps/diskusage/ControlsView.cpp index 7ba86f80ef..1412aee2ea 100644 --- a/src/apps/diskusage/ControlsView.cpp +++ b/src/apps/diskusage/ControlsView.cpp @@ -272,7 +272,7 @@ ControlsView::ControlsView(BRect r) ResizeTo(Bounds().Width(), height + 6.0); // Horizontal divider - BRect r = Bounds(); + r = Bounds(); r.top = r.bottom - 1.0; r.left -= 5.0; r.right += 5.0; BBox* divider = new BBox(r, NULL, B_FOLLOW_LEFT_RIGHT, B_WILL_DRAW);