diff options
author | Mathias Gumz <akira@fluxbox.org> | 2015-01-03 20:44:31 (GMT) |
---|---|---|
committer | Mathias Gumz <akira@fluxbox.org> | 2015-01-03 20:44:31 (GMT) |
commit | 3c85ace912824df11ccb22666085e9ba84cd00be (patch) | |
tree | 114adc63ee3fba6c7b3508c578db98c39f248ddf | |
parent | ccd86cfe9c960d8ead07bd8d16fc6f5a12562774 (diff) | |
download | fluxbox-3c85ace912824df11ccb22666085e9ba84cd00be.zip fluxbox-3c85ace912824df11ccb22666085e9ba84cd00be.tar.bz2 |
Fix signature ITypeAheadable::isEnabled()
-rw-r--r-- | src/FbTk/ITypeAheadable.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/ITypeAheadable.hh b/src/FbTk/ITypeAheadable.hh index ebcb935..9c8e819 100644 --- a/src/FbTk/ITypeAheadable.hh +++ b/src/FbTk/ITypeAheadable.hh | |||
@@ -38,7 +38,7 @@ public: | |||
38 | virtual ~ITypeAheadable() { } | 38 | virtual ~ITypeAheadable() { } |
39 | 39 | ||
40 | virtual const std::string &iTypeString() const = 0; | 40 | virtual const std::string &iTypeString() const = 0; |
41 | virtual bool isEnabled() { return true; } | 41 | virtual bool isEnabled() const { return true; } |
42 | char iTypeChar(size_t i) const { return iTypeString()[i]; } | 42 | char iTypeChar(size_t i) const { return iTypeString()[i]; } |
43 | bool iTypeCheckStringSize(size_t sz) const { | 43 | bool iTypeCheckStringSize(size_t sz) const { |
44 | return (iTypeString().size() > sz); | 44 | return (iTypeString().size() > sz); |