Ecore_Win32: Fix string for the BackSpace key on Windows

@fix
This commit is contained in:
Vincent Torri 2014-10-14 14:55:20 +02:00 committed by Mike Blumenkrantz
parent d8955625ce
commit 0e20323a4a
1 changed files with 2 additions and 2 deletions

View 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 */