use wxCopyRectToRECT instead of duplicating it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
d5e0be7d42
commit
f9c980f617
@ -926,10 +926,7 @@ void wxWindowMSW::ScrollWindow(int dx, int dy, const wxRect *prect)
|
||||
RECT *pr;
|
||||
if ( prect )
|
||||
{
|
||||
rect.left = prect->x;
|
||||
rect.top = prect->y;
|
||||
rect.right = prect->x + prect->width;
|
||||
rect.bottom = prect->y + prect->height;
|
||||
wxCopyRectToRECT(*prect, rect);
|
||||
pr = ▭
|
||||
}
|
||||
else
|
||||
@ -1467,11 +1464,7 @@ void wxWindowMSW::Refresh(bool eraseBack, const wxRect *rect)
|
||||
const RECT *pRect;
|
||||
if ( rect )
|
||||
{
|
||||
mswRect.left = rect->x;
|
||||
mswRect.top = rect->y;
|
||||
mswRect.right = rect->x + rect->width;
|
||||
mswRect.bottom = rect->y + rect->height;
|
||||
|
||||
wxCopyRectToRECT(*rect, mswRect);
|
||||
pRect = &mswRect;
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user