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 16:56:58 +0900
committerTadashi G. Takaoka <takaoka@google.com>2012-03-05 22:11:13 +0900
commit8cc8f26adfe0f06cebc697dac43a856326cf7afc (patch)
treee9b325af864e558e49a7fca9ea7c358137fe6d63 /java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java
parentd5b6360549c1e97958a2ec25e5c20ab4d8b455b1 (diff)
downloadlatinime-8cc8f26adfe0f06cebc697dac43a856326cf7afc.tar.gz
latinime-8cc8f26adfe0f06cebc697dac43a856326cf7afc.tar.xz
latinime-8cc8f26adfe0f06cebc697dac43a856326cf7afc.zip
Make SuggestedWords partially immutable
Change-Id: I72a2f71d7f6565a30c06e563b0a64f496542cde9
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;
}