diff --git a/include/wx/dfb/region.h b/include/wx/dfb/region.h index a7cdd83dd1..edb6525f60 100644 --- a/include/wx/dfb/region.h +++ b/include/wx/dfb/region.h @@ -76,11 +76,11 @@ public: // Outer bounds of region void GetBox(wxCoord& x, wxCoord& y, wxCoord&w, wxCoord &h) const; - wxRect GetBox(void) const; + wxRect GetBox() const; // Is region empty? - bool Empty(void) const; - inline bool IsEmpty(void) const { return Empty(); } + bool Empty() const; + bool IsEmpty() const { return Empty(); } // Does the region contain the point (x,y)? wxRegionContain Contains(wxCoord x, wxCoord y) const;