all repos — fluxbox @ 6aff2f7c280631d9d8750c02d1e45ea1a342f7ea

custom fork of the fluxbox windowmanager

ButtonTheme::name can be const.
Mario J. Rugiero mrugiero@gmail.com
commit

6aff2f7c280631d9d8750c02d1e45ea1a342f7ea

parent

9667d538eb88b19e2e73484b69499dfd3f39a729

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/ButtonTheme.hhsrc/ButtonTheme.hh

@@ -41,7 +41,7 @@

const FbTk::Texture &pressed() const { return *m_pressed_texture; } GC gc() const { return m_gc.gc(); } int scale() const { return *m_scale; } // scale factor for inside objects - const std::string &name() { return m_name; } + const std::string &name() const { return m_name; } virtual FbTk::Signal<> &reconfigSig() { return FbTk::Theme::reconfigSig(); }