From: Julian Smart Date: Sat, 21 May 2005 16:52:56 +0000 (+0000) Subject: Applied patch for bug [ 1206181 ] Option-key decodes are wrong X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/19fc48c61d88e6a2e3af46ed8bf1942a0de0a02e?ds=inline Applied patch for bug [ 1206181 ] Option-key decodes are wrong git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34226 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/toplevel.cpp b/src/mac/carbon/toplevel.cpp index 5c67dbfb3b..cc47ea79c5 100644 --- a/src/mac/carbon/toplevel.cpp +++ b/src/mac/carbon/toplevel.cpp @@ -111,7 +111,7 @@ static pascal OSStatus TextInputEventHandler( EventHandlerCallRef handler , Even OSStatus result = eventNotHandledErr ; wxWindow* focus = wxWindow::FindFocus() ; - char charCode ; + unsigned char charCode ; UInt32 keyCode ; UInt32 modifiers ; Point point ; @@ -167,7 +167,7 @@ static pascal OSStatus KeyboardEventHandler( EventHandlerCallRef handler , Event if ( focus == NULL ) return result ; - char charCode ; + unsigned char charCode ; wxChar uniChar = 0 ; UInt32 keyCode ; UInt32 modifiers ;