From f47d4a05c09d3d4dd0427c6af8e91ef0be11a5ee Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 10 Jul 2006 19:32:46 +0000 Subject: [PATCH] fix other-shift handling so that it does not mess up the handling of the main key svn: r3674 --- src/wxxt/src/Windows/Window.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wxxt/src/Windows/Window.cc b/src/wxxt/src/Windows/Window.cc index cfac5e66a2..e724f69772 100644 --- a/src/wxxt/src/Windows/Window.cc +++ b/src/wxxt/src/Windows/Window.cc @@ -1753,11 +1753,11 @@ void wxWindow::WindowEventHandler(Widget w, kc = 0; if (XMB_STR_PREFERRED_STATUS(other_status, xev)) - kc = extract_string_key(other_str, other_slen); + other_kc = extract_string_key(other_str, other_slen); else if (XMB_KC_STATUS(other_status)) other_kc = CharCodeXToWX(other_keysym); else if (XMB_STR_STATUS(other_status)) - kc = extract_string_key(other_str, other_slen); + other_kc = extract_string_key(other_str, other_slen); else other_kc = 0;