aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/inputlogic
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-01-27 03:18:34 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2014-01-27 03:18:34 -0800
commit9cc7238f716936301b80ba529a88ae07f0b93681 (patch)
tree6abdf631d67de9540427e96d03f8f55e03f0ba73 /java/src/com/android/inputmethod/latin/inputlogic
parent1ced9e6ddc546910eae751bf959b1a40b07bae93 (diff)
parent264f4e380dd496b156914a47089bd26b9eba1cb6 (diff)
downloadlatinime-9cc7238f716936301b80ba529a88ae07f0b93681.tar.gz
latinime-9cc7238f716936301b80ba529a88ae07f0b93681.tar.xz
latinime-9cc7238f716936301b80ba529a88ae07f0b93681.zip
am 264f4e38: Merge "[IL84] Remove a useless call and rename a method"
* commit '264f4e380dd496b156914a47089bd26b9eba1cb6': [IL84] Remove a useless call and rename a method
Diffstat (limited to 'java/src/com/android/inputmethod/latin/inputlogic')
-rw-r--r--java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
index e688d2c31..0554cadfc 100644
--- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
+++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
@@ -722,7 +722,7 @@ public final class InputLogic {
// Set punctuation right away. onUpdateSelection will fire but tests whether it is
// already displayed or not, so it's okay.
- mLatinIME.setPunctuationSuggestions();
+ mLatinIME.setNeutralSuggestionStrip();
}
keyboardSwitcher.updateShiftState();
@@ -1075,7 +1075,7 @@ public final class InputLogic {
}
if (!mWordComposer.isComposingWord() && !settingsValues.mBigramPredictionEnabled) {
- mLatinIME.setPunctuationSuggestions();
+ mLatinIME.setNeutralSuggestionStrip();
return;
}