aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2016-02-17 22:09:27 +0200
committerJarkko Koivikko <jarkko.koivikko@code-q.fi>2016-02-18 16:07:09 +0000
commit0c626ef9ba27b777e19f19e4ba9722f9d510af05 (patch)
tree56826b8294146c09eb4a5785dca1bcf39d135690
parenta08d37af789c5ea837ee2841cc37b9e0c2d62e63 (diff)
t9write: Fix Spanish character sets
Include inverted question / exclamation mark in the character sets for Spanish language. Change-Id: I8f56a4e5ec8013a4006f3c4e9266fdb0a5f742f9 Reviewed-by: Rainer Keller <rainer.keller@theqtcompany.com>
-rw-r--r--src/virtualkeyboard/t9writeinputmethod.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/virtualkeyboard/t9writeinputmethod.cpp b/src/virtualkeyboard/t9writeinputmethod.cpp
index d3490ad5..a2f45c18 100644
--- a/src/virtualkeyboard/t9writeinputmethod.cpp
+++ b/src/virtualkeyboard/t9writeinputmethod.cpp
@@ -338,6 +338,9 @@ public:
symbolCategories.append(DECUMA_CATEGORY_BASIC_PUNCTUATIONS);
symbolCategories.append(DECUMA_CATEGORY_CONTRACTION_MARK);
}
+
+ if (language == DECUMA_LANG_ES)
+ symbolCategories.append(DECUMA_CATEGORY_SPANISH_PUNCTUATIONS);
}
break;