aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/FbTk/KeyUtil.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbTk/KeyUtil.cc b/src/FbTk/KeyUtil.cc
index 34f2e4d..a24abad 100644
--- a/src/FbTk/KeyUtil.cc
+++ b/src/FbTk/KeyUtil.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: KeyUtil.cc,v 1.6 2003/12/31 11:57:47 fluxgen Exp $ 22// $Id: KeyUtil.cc,v 1.7 2004/02/10 18:55:12 fluxgen Exp $
23 23
24#include "KeyUtil.hh" 24#include "KeyUtil.hh"
25#include "App.hh" 25#include "App.hh"
@@ -172,7 +172,7 @@ unsigned int KeyUtil::getModifier(const char *modstr) {
172 struct t_modlist{ 172 struct t_modlist{
173 char *str; 173 char *str;
174 unsigned int mask; 174 unsigned int mask;
175 bool operator == (const char *modstr) { 175 bool operator == (const char *modstr) const {
176 return (strcasecmp(str, modstr) == 0 && mask !=0); 176 return (strcasecmp(str, modstr) == 0 && mask !=0);
177 } 177 }
178 } modlist[] = { 178 } modlist[] = {