]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed resource leak in MemoryHDC (closes bug 670016)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 18 Jan 2003 01:51:05 +0000 (01:51 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 18 Jan 2003 01:51:05 +0000 (01:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/private.h

index f4cb8b3908400e11fa2cc34149d1d0498f3a1e1e..390a7007b973206fd9497eda4659ecb9919cd9d9 100644 (file)
@@ -356,7 +356,7 @@ class MemoryHDC
 {
 public:
     MemoryHDC() { m_hdc = ::CreateCompatibleDC(NULL); }
-   ~MemoryHDC() { ::DeleteObject(m_hdc);              }
+   ~MemoryHDC() { ::DeleteDC(m_hdc);                  }
 
     operator HDC() const { return m_hdc; }