]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp.in
Compilation fix for old OS/2 compilers.
[wxWidgets.git] / src / stc / stc.cpp.in
index 9d5b1f19b298247e7e3437456f2520bd40a9014b..a21f6812528d891858372fd2661b410ebb7a3a39 100644 (file)
@@ -550,9 +550,9 @@ void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
         // be a function key or etc., the platforms appear to always give us a
         // small value in this case) then fallback to the ascii key code but
         // don't do anything for function keys or etc.
-        if (key <= 255) {
+        if (key <= 127) {
             key = evt.GetKeyCode();
-            keyOk = (key <= 255);
+            keyOk = (key <= 127);
         }
         if (keyOk) {
             m_swx->DoAddChar(key);