diff options
author | nyamatongwe <unknown> | 2013-05-24 00:04:54 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-05-24 00:04:54 +1000 |
commit | 85237dd55cd67cf9f72a751f5a275a910350e5cd (patch) | |
tree | 6a0072e11ce30bf18130cf7fcc3baa37d5fd92fe /src/KeyMap.h | |
parent | d6e875c9b3a507551eb32ca3fff159eb07189fd9 (diff) | |
download | scintilla-mirror-85237dd55cd67cf9f72a751f5a275a910350e5cd.tar.gz |
Made methods const where they can be and are logically const as well.
Diffstat (limited to 'src/KeyMap.h')
-rw-r--r-- | src/KeyMap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KeyMap.h b/src/KeyMap.h index ee4d29ce2..3fbbeab69 100644 --- a/src/KeyMap.h +++ b/src/KeyMap.h @@ -40,7 +40,7 @@ public: ~KeyMap(); void Clear(); void AssignCmdKey(int key, int modifiers, unsigned int msg); - unsigned int Find(int key, int modifiers); // 0 returned on failure + unsigned int Find(int key, int modifiers) const; // 0 returned on failure }; #ifdef SCI_NAMESPACE |