Author: hbelusca
Date: Wed Jun 19 00:00:19 2013
New Revision: 59259

URL: http://svn.reactos.org/svn/reactos?rev=59259&view=rev
Log:
Fix the fix of revision 59258. By the way, I forgot to say that this "feature" 
was introduced in revision 54107.

Modified:
    trunk/reactos/win32ss/user/ntuser/hotkey.c

Modified: trunk/reactos/win32ss/user/ntuser/hotkey.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/hotkey.c?rev=59259&r1=59258&r2=59259&view=diff
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/hotkey.c  [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/hotkey.c  [iso-8859-1] Wed Jun 19 
00:00:19 2013
@@ -31,9 +31,10 @@
  * (hyphen / substract sign) on a 82-key keyboard.
  */
 /*                   thread hwnd  modifiers  vk      id  next */
-HOT_KEY hkF12 =      {NULL, NULL, 0,         VK_F12, IDHK_F12,      NULL};
-HOT_KEY hkShiftF12 = {NULL, NULL, MOD_SHIFT, VK_F12, IDHK_SHIFTF12, &hkF12};
-HOT_KEY hkWinKey =   {NULL, NULL, MOD_WIN,   0,      IDHK_WINKEY,   
&hkShiftF12};
+// HOT_KEY hkF12 =      {NULL, NULL, 0,         VK_F12, IDHK_F12,      NULL};
+// HOT_KEY hkShiftF12 = {NULL, NULL, MOD_SHIFT, VK_F12, IDHK_SHIFTF12, &hkF12};
+// HOT_KEY hkWinKey =   {NULL, NULL, MOD_WIN,   0,      IDHK_WINKEY,   
&hkShiftF12};
+HOT_KEY hkWinKey =   {NULL, NULL, MOD_WIN,   0,      IDHK_WINKEY,   NULL};
 
 PHOT_KEY gphkFirst = &hkWinKey;
 BOOL bWinHotkeyActive = FALSE;


Reply via email to