From: Kevin Hock Date: Sun, 3 Apr 2005 18:20:03 +0000 (+0000) Subject: Remove unused variable "Point topleft" in ScrollRect X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1804e89886b298a71b7f055dbee4feb817549765 Remove unused variable "Point topleft" in ScrollRect git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33307 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/utils.cpp b/src/mac/carbon/utils.cpp index 00a59e4527..235bf424b1 100644 --- a/src/mac/carbon/utils.cpp +++ b/src/mac/carbon/utils.cpp @@ -1382,7 +1382,6 @@ void wxMacControl::ScrollRect( wxRect *r , int dx , int dy ) { Rect bounds ; GetControlBounds( m_controlRef , &bounds ) ; - Point topleft = { bounds.top , bounds.left } ; bounds.left += r->x ; bounds.top += r->y ; bounds.bottom = bounds.top + r->height ;