DeskCalc: Remove extra FrameResized() call.

BView::ResizeTo() calls FrameResized() which resolves to the virtual
FrameResized() method in CalcView. So, FrameResized() was
getting called twice.
This commit is contained in:
John Scipione
2013-06-26 18:10:54 -04:00
parent d81cbcf359
commit f9d2a8cb25
-1
View File
@@ -674,7 +674,6 @@ void
CalcView::ResizeTo(float width, float height)
{
BView::ResizeTo(width, height);
FrameResized(width, height);
}