all repos — fluxbox @ 3c85ace912824df11ccb22666085e9ba84cd00be

custom fork of the fluxbox windowmanager

Fix signature ITypeAheadable::isEnabled()
Mathias Gumz akira@fluxbox.org
commit

3c85ace912824df11ccb22666085e9ba84cd00be

parent

ccd86cfe9c960d8ead07bd8d16fc6f5a12562774

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

jump to
M src/FbTk/ITypeAheadable.hhsrc/FbTk/ITypeAheadable.hh

@@ -38,7 +38,7 @@ public:

virtual ~ITypeAheadable() { } virtual const std::string &iTypeString() const = 0; - virtual bool isEnabled() { return true; } + virtual bool isEnabled() const { return true; } char iTypeChar(size_t i) const { return iTypeString()[i]; } bool iTypeCheckStringSize(size_t sz) const { return (iTypeString().size() > sz);