From 8546a549614d7bc09db28653ab7dd834634e72fa Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 14 Sep 2006 20:28:28 +0000 Subject: [PATCH] Inside --> Contains git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41234 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_gdicmn.i | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/wxPython/src/_gdicmn.i b/wxPython/src/_gdicmn.i index d1be49859b..f819bd50d8 100644 --- a/wxPython/src/_gdicmn.i +++ b/wxPython/src/_gdicmn.i @@ -644,15 +644,20 @@ bottom, otherwise it is moved to the left or top respectively.", "", } - DocStr( Inside, "Return True if the point is (not strcitly) inside the rect.", ""); - %Rename(InsideXY, bool, Inside(int x, int y) const); - bool Inside(const wxPoint& pt) const; + DocStr( Contains, "Return True if the point is inside the rect.", ""); + %Rename(ContainsXY, bool, Contains(int x, int y) const); + bool Contains(const wxPoint& pt) const; DocDeclStrName( - bool, Inside(const wxRect& rect) const, + bool, Contains(const wxRect& rect) const, "Returns ``True`` if the given rectangle is completely inside this rectangle or touches its boundary.", "", - InsideRect); + ContainsRect); + %pythoncode { + Inside = wx._deprecated(Contains, "Use `Contains` instead.") + InsideXY = wx._deprecated(ContainsXY, "Use `ContainsXY` instead.") + InsideRect = wx._deprecated(ContainsRect, "Use `ContainsRect` instead.") + } DocDeclStr( bool, Intersects(const wxRect& rect) const, -- 2.45.2