]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/region.h
removed wxLogTrace() without mask to fix DMC compilation
[wxWidgets.git] / include / wx / cocoa / region.h
index 3ecf89882f49a2973ec7fe8557e88264300aa847..e15bb3fc806378d098f637f754eae925959084ba 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_REGION_H_
 #define _WX_REGION_H_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "region.h"
 #endif
 
@@ -64,6 +64,9 @@ public:
     // Clear current region
     void Clear();
 
+    // Move the region
+    bool Offset(wxCoord x, wxCoord y);
+
     // Union rectangle or region with this.
     bool Union(long x, long y, long width, long height)
         { return Combine(x, y, width, height, wxRGN_OR); }