]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dcscreen.cpp
::GetWindowText() -> wxGetWindowText
[wxWidgets.git] / src / msw / dcscreen.cpp
index 71d61dd7d9aa1b3f9e0d390f07116806014a55a1..7960fbd3e81185ab9a1b32e51ed00eb8830d8604 100644 (file)
@@ -34,14 +34,14 @@ IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC)
 // Create a DC representing the whole screen
 wxScreenDC::wxScreenDC(void)
 {
-  m_hDC = (WXHDC) ::GetDC(NULL);
+  m_hDC = (WXHDC) ::GetDC((HWND) NULL);
   m_hDCCount ++;
 }
 
 wxScreenDC::~wxScreenDC(void)
 {
   SelectOldObjects(m_hDC);
-  ::ReleaseDC(NULL, (HDC) m_hDC);
+  ::ReleaseDC((HWND) NULL, (HDC) m_hDC);
   m_hDC = 0;
   m_hDCCount --;
 }