]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_gdicmn.i
Patch from Andrea: fixes no page chang* events with mouse right click,
[wxWidgets.git] / wxPython / src / _gdicmn.i
index 61f99c065f5cd52f82ba8ae3eeb0a745b8c0f5f9..b887d2e0aa993d4a6663a1dbdcd4ee6154b7c979 100644 (file)
@@ -687,10 +687,14 @@ bottom, otherwise it is moved to the left or top respectively.", "",
         "Returns ``True`` if the given rectangle is completely inside this
 rectangle or touches its boundary.", "",
         ContainsRect);
+    
     %pythoncode {
-        Inside = wx._deprecated(Contains, "Use `Contains` instead.")
-        InsideXY = wx._deprecated(ContainsXY, "Use `ContainsXY` instead.")
-        InsideRect = wx._deprecated(ContainsRect, "Use `ContainsRect` instead.")
+        %#Inside = wx._deprecated(Contains, "Use `Contains` instead.")
+        %#InsideXY = wx._deprecated(ContainsXY, "Use `ContainsXY` instead.")
+        %#InsideRect = wx._deprecated(ContainsRect, "Use `ContainsRect` instead.")
+        Inside = Contains
+        InsideXY = ContainsXY
+        InsideRect = ContainsRect
     }
     
     DocDeclStr(    
@@ -811,6 +815,8 @@ public:
     %RenameCtor(Point2DCopy, wxPoint2D( const wxPoint2D &pt ));
     %RenameCtor(Point2DFromPoint, wxPoint2D( const wxPoint &pt ));
 
+    ~wxPoint2D();
+    
     DocDeclAStr(
         void, GetFloor( int *OUTPUT , int *OUTPUT ) const,
         "GetFloor() -> (x,y)",