diff options
author | 2012-07-23 15:28:28 +0900 | |
---|---|---|
committer | 2012-07-23 15:37:43 +0900 | |
commit | 4702671ea4feb0c79a879e2e3013afdd6ed800b1 (patch) | |
tree | a267b97a3760c684d52f1ed5ae0caa0eabe0939f /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java | |
parent | c8e45ddb032554f4e9d4411d8ef47d98db62d77b (diff) | |
download | latinime-4702671ea4feb0c79a879e2e3013afdd6ed800b1.tar.gz latinime-4702671ea4feb0c79a879e2e3013afdd6ed800b1.tar.xz latinime-4702671ea4feb0c79a879e2e3013afdd6ed800b1.zip |
Rename SuggestionsView to SuggestionStripView
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java index 19287e3f3..5b23d7f3c 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java @@ -68,7 +68,7 @@ public class MoreSuggestionsView extends KeyboardView implements MoreKeysPanel { @Override public void onCodeInput(int primaryCode, int x, int y) { final int index = primaryCode - MoreSuggestions.SUGGESTION_CODE_BASE; - if (index >= 0 && index < SuggestionsView.MAX_SUGGESTIONS) { + if (index >= 0 && index < SuggestionStripView.MAX_SUGGESTIONS) { mListener.onCustomRequest(index); } } |