X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcb44466c13262aad45c82f13373069dac8ba932..953ccd3da935af4f03732ef87a0dba214c802e65:/include/wx/gdicmn.h 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; };