diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-30 21:04:09 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-30 21:04:09 +0000 |
| commit | 390d447d9ba92878fbd1a0f7955edb5f83256195 (patch) | |
| tree | af187b491448e9b8770f7e19df730b53f5f61d3d /src/bindings.hh | |
| parent | 5f8e2b75fadc1878aebf063e5fc5bf25fbf70385 (diff) | |
add some const
Diffstat (limited to 'src/bindings.hh')
| -rw-r--r-- | src/bindings.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bindings.hh b/src/bindings.hh index be73b51f..81b7075d 100644 --- a/src/bindings.hh +++ b/src/bindings.hh @@ -51,9 +51,9 @@ private: BindingTree *_mousetree; // this tree is a list. it has only siblings - int find_key(BindingTree *search); - bool translate(const std::string &str, Binding &b, bool askey); - BindingTree *buildtree(const StringVect &keylist, int id); + int find_key(BindingTree *search) const; + bool translate(const std::string &str, Binding &b, bool askey) const; + BindingTree *buildtree(const StringVect &keylist, int id) const; void OBBindings::assimilate(BindingTree *node); public: |
