]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/utilsx.cpp
remove extraneous returns
[wxWidgets.git] / src / x11 / utilsx.cpp
index 9bc793e343cc1aa57b4536d39d72e60e2c72a41f..a635f8f7e816cb8ae0209c9677a3872e76e313b6 100644 (file)
@@ -58,14 +58,14 @@ bool wxDoSetShape( Display* xdisplay,
     else
     {
         // wxRegion::ConvertToBitmap gives us the wrong Pixmap:
-        // polichrome and with black and whire reversed
+        // polychrome and with black and white reversed
         wxRect box = region.GetBox();
         wxBitmap bmp(box.GetRight(), box.GetBottom(), 1);
         wxMemoryDC dc;
         dc.SelectObject(bmp);
         dc.SetBackground(*wxBLACK_BRUSH);
         dc.Clear();
-        dc.SetClippingRegion(region);
+        dc.SetDeviceClippingRegion(region);
         dc.SetBackground(*wxWHITE_BRUSH);
         dc.Clear();
         dc.SelectObject(wxNullBitmap);