From 3c85ace912824df11ccb22666085e9ba84cd00be Mon Sep 17 00:00:00 2001
From: Mathias Gumz <akira@fluxbox.org>
Date: Sat, 3 Jan 2015 21:44:31 +0100
Subject: Fix signature ITypeAheadable::isEnabled()

---
 src/FbTk/ITypeAheadable.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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:
     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);
-- 
cgit v0.11.2