]> git.saurik.com Git - wxWidgets.git/commitdiff
another memory leak fixed
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Dec 2001 14:08:02 +0000 (14:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 12 Dec 2001 14:08:02 +0000 (14:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/cursor.cpp

index 19063594b34d66d48bd2ec42f717ce10cad5da51..0fda188e921337c83c9b323f952ca06b369868f4 100644 (file)
@@ -96,7 +96,7 @@ wxCursorRefData::wxCursorRefData()
   m_width = 32;
   m_height = 32;
 
-  m_destroyCursor = FALSE;
+  refData->m_destroyCursor = TRUE;
 }
 
 void wxCursorRefData::Free()
@@ -145,7 +145,6 @@ wxCursor::wxCursor(const wxString& cursor_file,
 #else
         refData->m_hCursor = (WXHCURSOR) LoadCursor(wxGetInstance(), cursor_file);
 #endif
-        refData->m_destroyCursor = FALSE;
     }
     else if (flags == wxBITMAP_TYPE_CUR)
     {
@@ -317,6 +316,9 @@ wxCursor::wxCursor(int cursor_type)
       break;
   }
 #endif
+
+  // no need to destroy the stock cursors
+  refData->m_destroyCursor = FALSE;
 }
 
 wxCursor::~wxCursor()