Skip to content

Commit

Permalink
DeskCalc: Remove extra FrameResized() call.
Browse files Browse the repository at this point in the history
BView::ResizeTo() calls FrameResized() which resolves to the virtual
FrameResized() method in CalcView. So, FrameResized() was
getting called twice.
  • Loading branch information
jscipione committed Jun 26, 2013
1 parent d81cbcf commit f9d2a8c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/apps/deskcalc/CalcView.cpp
Expand Up @@ -674,7 +674,6 @@ void
CalcView::ResizeTo(float width, float height)
{
BView::ResizeTo(width, height);
FrameResized(width, height);
}


Expand Down

0 comments on commit f9d2a8c

Please sign in to comment.