From 7df69403caacee15b4bd0e2cf2c6925c0f71f40b Mon Sep 17 00:00:00 2001 From: Claudio Valerio Date: Fri, 8 Jun 2012 12:47:14 +0200 Subject: [PATCH] fixed zero key on french keyboard --- src/frameworks/UBPlatformUtils_linux.cpp | 2 +- src/frameworks/UBPlatformUtils_win.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frameworks/UBPlatformUtils_linux.cpp b/src/frameworks/UBPlatformUtils_linux.cpp index 127fe68b..7990af12 100644 --- a/src/frameworks/UBPlatformUtils_linux.cpp +++ b/src/frameworks/UBPlatformUtils_linux.cpp @@ -220,7 +220,7 @@ const KEYBT FRENCH_LOCALE[] = { /* ? 7 */ KEYBT(0xe8, XK_egrave, 0x37, 0x37), /* _ 8 */ KEYBT(0x5f, 0x38), /* ? 9 */ KEYBT(0xe7, XK_ccedilla, 0x39, 0x39), - /* ? 0 */ KEYBT(0xe0, 0x29), + /* ? 0 */ KEYBT(0xe0, 0x30), /* ) ? */ KEYBT(0x29, 0xb0), /* = + */ KEYBT(0x3d, 0x2b), diff --git a/src/frameworks/UBPlatformUtils_win.cpp b/src/frameworks/UBPlatformUtils_win.cpp index 04f09420..de273b2b 100644 --- a/src/frameworks/UBPlatformUtils_win.cpp +++ b/src/frameworks/UBPlatformUtils_win.cpp @@ -247,7 +247,7 @@ const KEYBT FRENCH_LOCALE[] = { /* ? 7 */ KEYBT(0xe8, 0x37), /* _ 8 */ KEYBT(0x5f, 0x38), /* ? 9 */ KEYBT(0xe7, 0x39), - /* ? 0 */ KEYBT(0xe0, 0x29), + /* ? 0 */ KEYBT(0xe0, 0x30), /* ) ? */ KEYBT(0x29, 0xb0), /* = + */ KEYBT(0x3d, 0x2b),