X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcb44466c13262aad45c82f13373069dac8ba932..8e1e6facb70151e7fb26c3731c3d30602a70129d:/include/wx/gdicmn.h?ds=sidebyside diff --git a/include/wx/gdicmn.h b/include/wx/gdicmn.h index a94d0ee228..32569e0a49 100644 --- a/include/wx/gdicmn.h +++ b/include/wx/gdicmn.h @@ -258,13 +258,14 @@ public: long GetBottom() const { return y + height; } long GetRight() const { return x + width; } - bool Inside(int, int) const; bool operator==(const wxRect& rect) const; bool operator!=(const wxRect& rect) const { return !(*this == rect); } + bool Inside(int cx, int cy) const; wxRect operator + (const wxRect& rect) const; const wxRect& operator += (const wxRect& rect); + public: long x, y, width, height; };