]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use dangling HBRUSH
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 24 May 2005 11:46:45 +0000 (11:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 24 May 2005 11:46:45 +0000 (11:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34317 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/notebook.cpp

index 4b02f0bc0985e736a1fa142bd2abe1cd087dcaf9..f5aa19e9838b0700aa05aef6908cf1c5ea2474bd 100644 (file)
@@ -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);