Removed wrong const.

This commit is contained in:
5cript 2018-01-26 02:41:04 +01:00
parent 18ff787947
commit 46f03638a2
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ namespace nana
nana::toolbar& widget;
std::size_t button;
void enable(bool enable_state) const;
void enable(bool enable_state);
};
struct toolbar_events

View File

@ -421,7 +421,7 @@ namespace nana
//class drawer
// Item Proxy
void item_proxy::enable(bool enable_state) const
void item_proxy::enable(bool enable_state)
{
widget.enable(button, enable_state);
}