Fix bug that caused F11 keypresses to become F12.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@38876 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fox 2015-08-13 03:37:52 +00:00
parent c43e467784
commit 1ebf02d6f9

View file

@ -3057,7 +3057,7 @@ process_char(WPARAM wParam, unsigned *eventModifierFlags)
case VK_F8: WIN_FUNCTIONKEY return NSF8FunctionKey;
case VK_F9: WIN_FUNCTIONKEY return NSF9FunctionKey;
case VK_F10: WIN_FUNCTIONKEY return NSF10FunctionKey;
case VK_F11: WIN_FUNCTIONKEY return NSF12FunctionKey;
case VK_F11: WIN_FUNCTIONKEY return NSF11FunctionKey;
case VK_F12: WIN_FUNCTIONKEY return NSF12FunctionKey;
case VK_F13: WIN_FUNCTIONKEY return NSF13FunctionKey;
case VK_F14: WIN_FUNCTIONKEY return NSF14FunctionKey;