]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/utilsx.cpp
applying patch, fixes #10523
[wxWidgets.git] / src / x11 / utilsx.cpp
index ff17f168e78011fdfd805eec992301fed6928383..a635f8f7e816cb8ae0209c9677a3872e76e313b6 100644 (file)
@@ -14,7 +14,6 @@
 
 #ifdef __VMS
 #define XShapeQueryExtension XSHAPEQUERYEXTENSION
-#define XtDisplay XTDISPLAY
 #endif
 
 #include "wx/x11/privx.h"
@@ -23,6 +22,7 @@
 
     #ifndef WX_PRECOMP
         #include "wx/bitmap.h"
+        #include "wx/region.h"
     #endif
 
     #ifdef __VMS
@@ -32,7 +32,6 @@
         #include <X11/extensions/shape.h>
     #endif
 
-    #include "wx/region.h"
     #include "wx/dcmemory.h"
 #endif
 
@@ -59,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);