aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-01-30 01:36:41 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2014-01-30 01:36:41 -0800
commit0f218b066d3980ab0c2cdc157039eb15e6bc9e65 (patch)
treeb98de80e5c3dccb2663f9684aa4f34a506568b15 /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
parent81fa5dbd09cf367209f31e90477eb1355c93e212 (diff)
parent776d46a771089482c68be56e81219bbd7bb559e4 (diff)
downloadlatinime-0f218b066d3980ab0c2cdc157039eb15e6bc9e65.tar.gz
latinime-0f218b066d3980ab0c2cdc157039eb15e6bc9e65.tar.xz
latinime-0f218b066d3980ab0c2cdc157039eb15e6bc9e65.zip
am 776d46a7: Merge "Show "Touch again to save" in system locale"
* commit '776d46a771089482c68be56e81219bbd7bb559e4': Show "Touch again to save" in system locale
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
index 5469ced7a..22804fce1 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
@@ -186,8 +186,8 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
return mStripVisibilityGroup.isShowingAddToDictionaryStrip();
}
- public void showAddToDictionaryHint(final String word, final CharSequence hintText) {
- mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip, getWidth(), hintText);
+ public void showAddToDictionaryHint(final String word) {
+ mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip, getWidth());
// {@link TextView#setTag()} is used to hold the word to be added to dictionary. The word
// will be extracted at {@link #onClick(View)}.
mAddToDictionaryStrip.setTag(word);