aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-03-05 05:29:14 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-05 05:29:14 -0800
commit40b6e666e1acfd105ca8090cbefcf6391c87cd81 (patch)
tree3e563e3495a8a8ea675c9930633f004de9980b38 /java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
parent717f12472f5c96078a3bf17b3d2d03183bc4f357 (diff)
parent8cc8f26adfe0f06cebc697dac43a856326cf7afc (diff)
downloadlatinime-40b6e666e1acfd105ca8090cbefcf6391c87cd81.tar.gz
latinime-40b6e666e1acfd105ca8090cbefcf6391c87cd81.tar.xz
latinime-40b6e666e1acfd105ca8090cbefcf6391c87cd81.zip
Merge "Make SuggestedWords partially immutable"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
index e5638ef21..31c32bdce 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
@@ -335,7 +335,7 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
public void layout(SuggestedWords suggestions, ViewGroup stripView, ViewGroup placer,
int stripWidth) {
- if (suggestions.isPunctuationSuggestions()) {
+ if (suggestions.mIsPunctuationSuggestions) {
layoutPunctuationSuggestions(suggestions, stripView);
return;
}