From: Robin Dunn Date: Sat, 28 Oct 2006 02:59:41 +0000 (+0000) Subject: Add missing Contains overload X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c907796b336b721b41a3b03dc3b6a598e330601e?ds=inline Add missing Contains overload git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/graphcmn.cpp b/src/common/graphcmn.cpp index 4193b2b9cc..3cbc6cb3c4 100644 --- a/src/common/graphcmn.cpp +++ b/src/common/graphcmn.cpp @@ -162,6 +162,11 @@ wxRect2DDouble wxGraphicsPath::GetBox() return wxRect2DDouble( x,y,w,h ); } +bool wxGraphicsPath::Contains( const wxPoint2DDouble& c, int fillStyle ) +{ + return Contains( c.m_x, c.m_y, fillStyle); +} + // // Emulations //