aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-07-23 15:28:28 +0900
committerTadashi G. Takaoka <takaoka@google.com>2012-07-23 15:37:43 +0900
commit4702671ea4feb0c79a879e2e3013afdd6ed800b1 (patch)
treea267b97a3760c684d52f1ed5ae0caa0eabe0939f /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java
parentc8e45ddb032554f4e9d4411d8ef47d98db62d77b (diff)
downloadlatinime-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.java2
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);
}
}