]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dcclient.cpp
ignore WinCE projects and build directories
[wxWidgets.git] / src / msw / dcclient.cpp
index 1602140de741c8fadb933936aa4179d6f40f735e..3eff38d0d4bbd01b181d52090bf2c6fb58537757 100644 (file)
@@ -169,7 +169,8 @@ void wxClientDCImpl::InitDC()
     }
 
     // clip the DC to avoid overwriting the non client area
-    SetClippingRegion(wxPoint(0,0), m_window->GetClientSize());
+    wxSize size = m_window->GetClientSize();
+    DoSetClippingRegion(0, 0, size.x, size.y);
 #endif // __WXUNIVERSAL__ || __WXWINCE__
 }