]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't deprecate Inside() yet
authorRobin Dunn <robin@alldunn.com>
Tue, 3 Oct 2006 21:30:09 +0000 (21:30 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 3 Oct 2006 21:30:09 +0000 (21:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41608 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_gdicmn.i

index 61f99c065f5cd52f82ba8ae3eeb0a745b8c0f5f9..d481997f29fca5929c968ef40becbb225e3df078 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(