From 04992872e583139d635216b94cdde7a7003e6426 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 2 Dec 2011 01:01:12 +0000 Subject: [PATCH] Removed const from a couple methods that are not const in the real code. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/menuitem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/menuitem.h b/interface/wx/menuitem.h index 577db5498c..c0e16ffbc3 100644 --- a/interface/wx/menuitem.h +++ b/interface/wx/menuitem.h @@ -307,7 +307,7 @@ public: @onlyfor{wxmsw} */ - void SetBackgroundColour(const wxColour& colour) const; + void SetBackgroundColour(const wxColour& colour); /** Sets the bitmap for the menu item. @@ -402,7 +402,7 @@ public: @onlyfor{wxmsw} */ - void SetMarginWidth(int width) const; + void SetMarginWidth(int width); /** Sets the parent menu which will contain this menu item. -- 2.45.2