]> git.lyx.org Git - lyx.git/blobdiff - src/trans.h
Fix bug in input of characters >127 ; update fr.po ; portability fix to lyxstring.
[lyx.git] / src / trans.h
index 97e8a51595c80e396e9b30107c6c7b56aa0c84a0..259433f300c18da2edfa2bcf9204455fb594b348 100644 (file)
@@ -97,7 +97,7 @@ private:
 
 char * Trans::Match(char c)
 {
-       return keymap_[c];
+       return keymap_[static_cast<unsigned char>(c)];
 }
 
 #endif