(gcc4) local variable shadows a parameter

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27379 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2008-09-08 13:27:31 +00:00
parent 5dcbba3155
commit 032d13f49a
1 changed files with 1 additions and 1 deletions

View File

@ -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);