Update PSPOskDialog.cpp

Remove unusable comment.
This commit is contained in:
mgaver 2013-04-22 18:25:57 +09:00
parent e22f8d516e
commit cf70cbc15f

View file

@ -30,30 +30,9 @@
#include <math.h> #include <math.h>
#endif #endif
#define NUMKEYROWS 4
#define KEYSPERROW 12
#define NUMBEROFVALIDCHARS (KEYSPERROW * NUMKEYROWS)
const int numKeyCols[OSK_KEYBOARD_COUNT] = {12, 12, 13, 13}; const int numKeyCols[OSK_KEYBOARD_COUNT] = {12, 12, 13, 13};
const int numKeyRows[OSK_KEYBOARD_COUNT] = {4, 4, 5, 5}; const int numKeyRows[OSK_KEYBOARD_COUNT] = {4, 4, 5, 5};
/* static const char oskKeys[2][numKeyCols][KEYSPERROW + 1] =
{
{
{'1','2','3','4','5','6','7','8','9','0','-','+','\0'},
{'q','w','e','r','t','y','u','i','o','p','[',']','\0'},
{'a','s','d','f','g','h','j','k','l',';','@','~','\0'},
{'z','x','c','v','b','n','m',',','.','/','?','\\','\0'},
},
{
{'!','@','#','$','%','^','&','*','(',')','_','+','\0'},
{'Q','W','E','R','T','Y','U','I','O','P','{','}','\0'},
{'A','S','D','F','G','H','J','K','L',':','"','`','\0'},
{'Z','X','C','V','B','N','M','<','>','/','?','|','\0'},
},
};
*/
// Japanese(Kana) diacritics // Japanese(Kana) diacritics
static const wchar_t diacritics[2][103] = static const wchar_t diacritics[2][103] =
{ {
@ -72,17 +51,17 @@ static const wchar_t oskKeys[OSK_KEYBOARD_COUNT][5][14] =
{ {
{ {
// Latin Lowercase // Latin Lowercase
{L"1234567890-+\0"}, {L"1234567890-+"},
{L"qwertyuiop[]\0"}, {L"qwertyuiop[]"},
{L"asdfghjkl;@~\0"}, {L"asdfghjkl;@~"},
{L"zxcvbnm,./?\\\0"}, {L"zxcvbnm,./?\\"},
}, },
{ {
// Latin Uppercase // Latin Uppercase
{L"!@#$%^&*()_+\0"}, {L"!@#$%^&*()_+"},
{L"QWERTYUIOP{}\0"}, {L"QWERTYUIOP{}"},
{L"ASDFGHJKL:\"`\0"}, {L"ASDFGHJKL:\"`"},
{L"ZXCVBNM<>/?|\0"}, {L"ZXCVBNM<>/?|"},
}, },
{ {
// Hiragana // Hiragana
@ -549,4 +528,4 @@ void PSPOskDialog::DoState(PointerWrap &p)
p.Do(selectedChar); p.Do(selectedChar);
p.Do(inputChars); p.Do(inputChars);
p.DoMarker("PSPOskDialog"); p.DoMarker("PSPOskDialog");
} }