fix BackSpace value

SVN revision: 40804
This commit is contained in:
Vincent Torri 2009-05-23 21:54:27 +00:00
parent fe6f78829e
commit 6e36366dbc
2 changed files with 6 additions and 6 deletions

View File

@ -955,9 +955,9 @@ _ecore_win32_event_char_get(int key,
switch (key)
{
case VK_BACK:
strncpy(kn, "Backspace", 32);
strncpy(ks, "Backspace", 32);
strncpy(kc, "Backspace", 32);
strncpy(kn, "BackSpace", 32);
strncpy(ks, "BackSpace", 32);
strncpy(kc, "BackSpace", 32);
break;
case VK_TAB:
strncpy(kn, "Tab", 32);

View File

@ -854,9 +854,9 @@ _ecore_wince_event_char_get(int key,
{
case VK_APP3:
case VK_BACK:
strncpy(kn, "Backspace", 32);
strncpy(ks, "Backspace", 32);
strncpy(kc, "Backspace", 32);
strncpy(kn, "BackSpace", 32);
strncpy(ks, "BackSpace", 32);
strncpy(kc, "BackSpace", 32);
break;
case VK_APP4:
case VK_TAB: