clarified wxRect::Contains(wxRect) comment
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
8193abb6dc
commit
fc01e9b380
1 changed files with 1 additions and 1 deletions
|
|
@ -537,7 +537,7 @@ public:
|
|||
// return true if the point is (not strcitly) inside the rect
|
||||
bool Contains(int x, int y) const;
|
||||
bool Contains(const wxPoint& pt) const { return Contains(pt.x, pt.y); }
|
||||
// return true if the rectangle is (not strcitly) inside the rect
|
||||
// return true if the rectangle 'rect' is (not strictly) inside this rect
|
||||
bool Contains(const wxRect& rect) const;
|
||||
|
||||
#if WXWIN_COMPATIBILITY_2_6
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue