From d8ad69ebf20fbd5b5a666d616d37a334b1fe5674 Mon Sep 17 00:00:00 2001 From: haydentech Date: Thu, 4 Sep 2003 19:43:31 +0000 Subject: [PATCH] Minor cleanup git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4505 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/Box.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kits/interface/Box.cpp b/src/kits/interface/Box.cpp index 625f383b99..b8726729d2 100644 --- a/src/kits/interface/Box.cpp +++ b/src/kits/interface/Box.cpp @@ -232,8 +232,8 @@ void BBox::FrameResized(float width, float height) { BRect bounds(Bounds()); - fBounds.right = Bounds().right; - fBounds.bottom = Bounds().bottom; + fBounds.right = bounds.right; + fBounds.bottom = bounds.bottom; Invalidate(); }