]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dcscreen.cpp
don't show the I-beam cursor over text in wxHtmlListBox
[wxWidgets.git] / src / msw / dcscreen.cpp
index e638335d7857d5cabd296779d0abc405c75cdaa5..0dc06f194c509dcea070c39432a7b54e4d88fd58 100644 (file)
@@ -25,7 +25,7 @@
 
 #include "wx/dcscreen.h"
 
-IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC)
+IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxDC)
 
 // Create a DC representing the whole screen
 wxScreenDC::wxScreenDC()
@@ -37,10 +37,3 @@ wxScreenDC::wxScreenDC()
     ::SetBkMode( GetHdc(), TRANSPARENT );
 }
 
-void wxScreenDC::DoGetSize(int *width, int *height) const
-{
-    // skip wxWindowDC version because it doesn't work without a valid m_canvas
-    // (which we don't have)
-    wxDC::DoGetSize(width, height);
-}
-