From: Vadim Zeitlin Date: Tue, 24 May 2005 11:46:45 +0000 (+0000) Subject: don't use dangling HBRUSH X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e32703a9d76b180e09571a7a0a5e8a2866c329ae don't use dangling HBRUSH git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34317 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/notebook.cpp b/src/msw/notebook.cpp index 4b02f0bc09..f5aa19e983 100644 --- a/src/msw/notebook.cpp +++ b/src/msw/notebook.cpp @@ -802,8 +802,12 @@ void wxNotebook::OnPaint(wxPaintEvent& WXUNUSED(event)) // if there is no special brush just use the solid background colour HBRUSH hbr = (HBRUSH)m_hbrBackground; + wxBrush brush; if ( !hbr ) - hbr = GetHbrushOf(wxBrush(GetBackgroundColour())); + { + brush = wxBrush(GetBackgroundColour()); + hbr = GetHbrushOf(brush); + } ::FillRect(GetHdcOf(memdc), &rc, hbr);