aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cerence/xt9/xt9common/xt9ime.h
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2021-09-02 11:46:59 +0300
committerJarkko Koivikko <jarkko.koivikko@code-q.fi>2021-09-02 16:21:51 +0300
commit3d402c7d33772a39415cf47842ef855c59a49acd (patch)
treebc90f7ff2da480a12c6a9a054812332001aa3512 /src/plugins/cerence/xt9/xt9common/xt9ime.h
parent3d65eb1bd0a4b6e2468bdfcbbcd427c7d92763ad (diff)
cerence: xt9: Add special case for an invalid input (as reported by xt9)
If the xt9 selection list build fails due to ET9STATUS_INVALID_INPUT, remove the symbol and select preferred candidate from the previous selection list. After this, start new input sequence using the rejected symbol as initial symbol. Pick-to: 6.2 Change-Id: Ib55d7391045c8d9c1db109e3ecd3855c71f45449 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi>
Diffstat (limited to 'src/plugins/cerence/xt9/xt9common/xt9ime.h')
-rw-r--r--src/plugins/cerence/xt9/xt9common/xt9ime.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/cerence/xt9/xt9common/xt9ime.h b/src/plugins/cerence/xt9/xt9common/xt9ime.h
index 759898ad..f9227dd9 100644
--- a/src/plugins/cerence/xt9/xt9common/xt9ime.h
+++ b/src/plugins/cerence/xt9/xt9common/xt9ime.h
@@ -84,7 +84,8 @@ public:
virtual QString exactWord(int *wordCompLen = nullptr);
bool hasActiveInput() const;
- virtual QStringList buildSelectionList(int *defaultListIndex, ET9U16 *gestureValue) = 0;
+ virtual QStringList buildSelectionList(int *defaultListIndex, ET9U16 *gestureValue);
+ virtual QStringList buildSelectionList(int *defaultListIndex, ET9U16 *gestureValue, ET9STATUS &eStatus) = 0;
virtual void cursorMoved();
void clearInput();
void setCapsLock();