Added GetRect to region iterator; cured window.cpp problem for BC++

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@963 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-11-04 22:29:37 +00:00
parent 5de9c45c5d
commit 3572173c01
7 changed files with 10 additions and 2 deletions

View File

@@ -121,6 +121,7 @@ class wxRegionIterator: public wxObject
long GetWidth(void) const { return GetW(); }
long GetH(void) const;
long GetHeight(void) const { return GetH(); }
wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
private: