author | hash <hash> | 2002-08-12 07:40:48 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-12 07:40:48 (UTC) |
commit | 895a6e1cebade986110758c57cafdadd942a63ff (patch) (side-by-side diff) | |
tree | 626a808b4f7ff27e7efd02a0573544fc7c4d04a7 /inputmethods | |
parent | 063b97e6cde3688f85969d7515ff75044fe02c21 (diff) | |
download | opie-895a6e1cebade986110758c57cafdadd942a63ff.zip opie-895a6e1cebade986110758c57cafdadd942a63ff.tar.gz opie-895a6e1cebade986110758c57cafdadd942a63ff.tar.bz2 |
korean support only
-rw-r--r-- | inputmethods/multikey/keyboard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inputmethods/multikey/keyboard.cpp b/inputmethods/multikey/keyboard.cpp index 3e43978..d0cfa51 100644 --- a/inputmethods/multikey/keyboard.cpp +++ b/inputmethods/multikey/keyboard.cpp @@ -467,13 +467,14 @@ void Keyboard::resetState() * * TODO * one major problem with this implementation is that you can't move the * cursor after inputing korean chars, otherwise it will eat up and replace * the char before the cursor you move to. fix that * - * make a kor/eng swaping key + * make backspace delete one single char, not the whole thing if still + * editing. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * how korean input works * * all following chars means unicode char value and are in hex @@ -767,14 +768,13 @@ ushort Keyboard::constoe(const ushort c) { // Keys::Keys {{{1 Keys::Keys() { Config config("locale"); config.setGroup( "Language" ); - QString l = config.readEntry( "Language" ); - if(l.isEmpty()) l = "en"; + QString l = config.readEntry( "Language" , "en" ); QString key_map = QPEApplication::qpeDir() + "/share/multikey/" + /* l // testing korean for now */ + "ko.keymap"; setKeysFromFile(key_map); |