From 0a880a3181672c861d929491e53b271606b5e86d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 4 Sep 2006 15:16:46 +0000 Subject: [PATCH] cosmetic fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dfb/region.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;