From: Bryan Petty <bryan@ibaku.net>
Date: Fri, 11 Jan 2008 18:33:00 +0000 (+0000)
Subject: Added wxRect::Intersect() documentation (patch 1868322 from Laurent Humbertclaude).
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d5706f3ee8a83947a639ff44a21df29c97b72682

Added wxRect::Intersect() documentation (patch 1868322 from Laurent Humbertclaude).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/docs/latex/wx/rect.tex b/docs/latex/wx/rect.tex
index b762d63a6c..94251a289e 100644
--- a/docs/latex/wx/rect.tex
+++ b/docs/latex/wx/rect.tex
@@ -272,6 +272,17 @@ means:
 \helpref{Deflate}{wxrectdeflate}
 
 
+\membersection{wxRect::Intersect}\label{wxrectintersect}
+
+\constfunc{wxRect}{Intersect}{\param{const wxRect\& }{rect}}
+
+\func{wxRect\&}{Intersect}{\param{const wxRect\& }{rect}}
+
+Modifies the rectangle to contain the overlapping box of this rectangle and the
+one passed in as parameter. The const version returns the new rectangle, the
+other one modifies this rectangle in place.
+
+
 \membersection{wxRect::Intersects}\label{wxrectintersects}
 
 \constfunc{bool}{Intersects}{\param{const wxRect\& }{rect}}
@@ -387,3 +398,4 @@ Like \helpref{Union}{wxrectunion} but don't treat empty rectangles specially.
 
 Returns the intersection of two rectangles (which may be empty).
 
+