diff options
author | 2010-10-25 02:08:31 -0700 | |
---|---|---|
committer | 2010-10-25 02:08:31 -0700 | |
commit | 55952c9868e5bdd61c7356f0ccf9168b36a4e9d6 (patch) | |
tree | 7a019220db838dcbb76e25979366ade7709e5c10 /java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java | |
parent | e767595da55720b25d51e314e91d861e31484b0f (diff) | |
parent | 0ce98cbf98c6409ac18fa341f467703d78352a4c (diff) | |
download | latinime-55952c9868e5bdd61c7356f0ccf9168b36a4e9d6.tar.gz latinime-55952c9868e5bdd61c7356f0ccf9168b36a4e9d6.tar.xz latinime-55952c9868e5bdd61c7356f0ccf9168b36a4e9d6.zip |
Merge "Get rid of references to BaseKeyboard in Latin-specific classes"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java index 6b46ab838..2bf70bf82 100644 --- a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java +++ b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java @@ -598,7 +598,7 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx * @see #getKeyboard() * @param keyboard the keyboard to display in this view */ - public void setKeyboard(BaseKeyboard keyboard) { + protected void setKeyboard(BaseKeyboard keyboard) { if (mKeyboard != null) { dismissKeyPreview(); } @@ -626,7 +626,7 @@ public class LatinKeyboardBaseView extends View implements PointerTracker.UIProx * @return the currently attached keyboard * @see #setKeyboard(BaseKeyboard) */ - public BaseKeyboard getKeyboard() { + protected BaseKeyboard getKeyboard() { return mKeyboard; } |