diff options
author | 2013-08-20 11:05:09 +0000 | |
---|---|---|
committer | 2013-08-20 11:05:09 +0000 | |
commit | 3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8 (patch) | |
tree | 8d9ff1cfc0b9f310e7df556cbb081a827c0617c1 /tests/src/com/android/inputmethod/latin/InputTestsBase.java | |
parent | 33f5f0df8b458269177d8f984d1050c0a20001c2 (diff) | |
parent | ef1e363016623ccf409c8c270f2c1e35a67734c9 (diff) | |
download | latinime-3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8.tar.gz latinime-3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8.tar.xz latinime-3f15c41d88c1060642cec87f02c3cdfd5b4c1cb8.zip |
Merge "[AC1] Add a memory of where to cut the first word."
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/InputTestsBase.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/InputTestsBase.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/latin/InputTestsBase.java b/tests/src/com/android/inputmethod/latin/InputTestsBase.java index 480570e62..500e8631d 100644 --- a/tests/src/com/android/inputmethod/latin/InputTestsBase.java +++ b/tests/src/com/android/inputmethod/latin/InputTestsBase.java @@ -258,7 +258,8 @@ public class InputTestsBase extends ServiceTestCase<LatinIMEForTests> { protected void pickSuggestionManually(final int index, final String suggestion) { mLatinIME.pickSuggestionManually(index, new SuggestedWordInfo(suggestion, 1, - SuggestedWordInfo.KIND_CORRECTION, "main")); + SuggestedWordInfo.KIND_CORRECTION, "main", + SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */)); } // Helper to avoid writing the try{}catch block each time |