]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
Interface fixes for Phoenix
[wxWidgets.git] / include / wx / msw / private.h
index 2875d294c727f57cb7ce6aaac01e0f9b7dda4247..622c3b1544f036fbf6d2121c0490b159b791a949 100644 (file)
@@ -417,8 +417,9 @@ private:
 class WindowHDC
 {
 public:
+    WindowHDC() : m_hwnd(NULL), m_hdc(NULL) { }
     WindowHDC(HWND hwnd) { m_hdc = ::GetDC(m_hwnd = hwnd); }
-   ~WindowHDC() { ::ReleaseDC(m_hwnd, m_hdc); }
+   ~WindowHDC() { if ( m_hwnd && m_hdc ) { ::ReleaseDC(m_hwnd, m_hdc); } }
 
     operator HDC() const { return m_hdc; }