]> git.saurik.com Git - wxWidgets.git/commitdiff
Stub for wxRegion::Offset
authorDavid Elliott <dfe@tgwbd.org>
Thu, 14 Aug 2003 20:56:21 +0000 (20:56 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Thu, 14 Aug 2003 20:56:21 +0000 (20:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22893 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cocoa/region.h
src/cocoa/region.cpp

index 8fb86d856d68ddbe9135063f628719f641fc9e58..e15bb3fc806378d098f637f754eae925959084ba 100644 (file)
@@ -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); }
index 9d6d22241263acf14e69c61bd1622ef171d60870..db1493aa07fc69fd1e30a15b3a21421d276ad70f 100644 (file)
@@ -45,6 +45,11 @@ void wxRegion::Clear()
     UnRef();
 }
 
+bool wxRegion::Offset(wxCoord x, wxCoord y)
+{
+    return false;
+}
+
 bool wxRegion::Combine(long x, long y, long width, long height, wxRegionOp op)
 {
     return false;