The new wxRect doesn't compile so I #if 0ed it

Fixed typo in configure.in


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2655 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-06-03 14:56:33 +00:00
parent 09fbacf7ad
commit 7742598f08
4 changed files with 9 additions and 338 deletions

View File

@@ -258,13 +258,17 @@ 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); }
// this doesn't compile
#if 0
bool Inside(int cx, int cy) const;
wxRect operator + (const wxRect& rect) const;
const wxRect& operator += (const wxRect& rect);
#endif
public:
long x, y, width, height;
};