Ecore_Win32: Fix string for the BackSpace key on Windows
authorVincent Torri <vincent.torri@univ-evry.fr>
Tue, 14 Oct 2014 12:55:20 +0000 (14:55 +0200)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 14 Oct 2014 13:02:42 +0000 (09:02 -0400)
@fix

src/lib/ecore_win32/ecore_win32_event.c

index d5cccf7..2e1de2a 100644 (file)
@@ -285,8 +285,8 @@ _ecore_win32_event_keystroke_get(Ecore_Win32_Callback_Data *msg,
         /* 0x07 : undefined */
 
       case VK_BACK: /* 0x08 */
-         keyname = "Backspace";
-         key = "Backspace";
+         keyname = "BackSpace";
+         key = "BackSpace";
          compose = "\b";
          break;
       case VK_TAB: /* 0x09 */