aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2012-07-24 16:26:12 +0900
committerSatoshi Kataoka <satok@google.com>2012-07-24 16:26:12 +0900
commit32555e832a5134ee6ef614175798b2a922e35d7f (patch)
tree85086d3b08329a88d7452238cc4f6945c99df9a8 /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java
parent540b535ba61091443e8dc45650c4e89586c4b23e (diff)
parent467f829bc890fbb5cde87540a8d54e10edbbdffb (diff)
downloadlatinime-32555e832a5134ee6ef614175798b2a922e35d7f.tar.gz
latinime-32555e832a5134ee6ef614175798b2a922e35d7f.tar.xz
latinime-32555e832a5134ee6ef614175798b2a922e35d7f.zip
Merge remote-tracking branch 'goog/master' into mergescriptpackage
Conflicts: java/res/values-da/strings.xml java/res/values-es-rUS/strings.xml java/res/values-fa/strings.xml java/res/values-ko/strings.xml java/res/values-pl/strings.xml java/res/values-sk/strings.xml java/res/values-sw/strings.xml Change-Id: I1d4be3df6c54c328011c448f31f163fafb2a909a
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);
}
}