diff options
author | 2013-07-25 11:00:24 +0000 | |
---|---|---|
committer | 2013-07-25 11:00:25 +0000 | |
commit | 21c6d23dcd546cd988864dae086d383cd45d82cf (patch) | |
tree | fd59bf50e9fd9bba6ecc67813110afb9824f0316 /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 15c41a61ad6ad0281542ec4700eaf42fd7cdba0c (diff) | |
parent | 0e08d70fe52737582b6c83dbf48aaf4d83063566 (diff) | |
download | latinime-21c6d23dcd546cd988864dae086d383cd45d82cf.tar.gz latinime-21c6d23dcd546cd988864dae086d383cd45d82cf.tar.xz latinime-21c6d23dcd546cd988864dae086d383cd45d82cf.zip |
Merge "Add MoreKeysPanel argument to Controller methods"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java index 81fb1963f..497a791d9 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -181,8 +181,8 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick private final MoreKeysPanel.Controller mMoreSuggestionsController = new MoreKeysPanel.Controller() { @Override - public void onDismissMoreKeysPanel() { - mMainKeyboardView.onDismissMoreKeysPanel(); + public void onDismissMoreKeysPanel(final MoreKeysPanel panel) { + mMainKeyboardView.onDismissMoreKeysPanel(panel); } @Override @@ -191,7 +191,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick } @Override - public void onCancelMoreKeysPanel() { + public void onCancelMoreKeysPanel(final MoreKeysPanel panel) { mMoreSuggestionsView.dismissMoreKeysPanel(); } }; |