aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-01-03 20:44:31 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-01-03 20:44:31 (GMT)
commit3c85ace912824df11ccb22666085e9ba84cd00be (patch)
tree114adc63ee3fba6c7b3508c578db98c39f248ddf /src
parentccd86cfe9c960d8ead07bd8d16fc6f5a12562774 (diff)
downloadfluxbox-3c85ace912824df11ccb22666085e9ba84cd00be.zip
fluxbox-3c85ace912824df11ccb22666085e9ba84cd00be.tar.bz2
Fix signature ITypeAheadable::isEnabled()
Diffstat (limited to 'src')
-rw-r--r--src/FbTk/ITypeAheadable.hh2
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);