compilation fix for recent commit

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11208 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-07-29 22:20:50 +00:00
parent a0e449ff41
commit 94589c3f4f

View File

@ -1201,12 +1201,12 @@ static inline void SendSetRedraw(HWND hwnd, bool on)
void wxWindowMSW::Freeze()
{
SendSetRedraw(FALSE);
SendSetRedraw(GetHwnd(), FALSE);
}
void wxWindowMSW::Thaw()
{
SendSetRedraw(TRUE);
SendSetRedraw(GetHwnd(), TRUE);
}
void wxWindowMSW::Refresh(bool eraseBack, const wxRect *rect)