]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/region.h
applied SourceForge patch # 544164 (hidden virtual method in wxMenuBar)
[wxWidgets.git] / include / wx / mac / region.h
index ee40f921f7e88d3f5c76ff5709bc50cf21f50334..d9fc31f073d89aca2c6e5631bd81afbb0e52bc96 100644 (file)
@@ -128,13 +128,13 @@ public:
     ~wxRegionIterator();
 
     wxRegionIterator& operator=(const wxRegionIterator& iterator);
-    
+
     void Reset() { m_current = 0; }
     void Reset(const wxRegion& region);
     
     operator bool () const { return m_current < m_numRects; }
     bool HaveRects() const { return m_current < m_numRects; }
-    
+
     wxRegionIterator& operator++();
     wxRegionIterator operator++(int);
     
@@ -146,6 +146,8 @@ public:
     long GetHeight() const { return GetH(); }
     wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
 private:
+    void SetRects(long numRects, wxRect *rects);
+
     long     m_current;
     long     m_numRects;
     wxRegion m_region;