summaryrefslogtreecommitdiff
path: root/java/src/com/android/inputmethod/keyboard/Key.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-08-31 14:22:53 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-08-31 15:30:54 +0900
commit9237a72634be821c22911633ef0848130e162d58 (patch)
treeabba8fa7994f555c1ac63992d013f3963120f7ae /java/src/com/android/inputmethod/keyboard/Key.java
parentb8dc67466339dc14653ad634c86851025373326b (diff)
Rename PopupMiniKeyboardView to MiniKeyboardView
Change-Id: Ic83cd1200cfb8f8c0b0cfbcad449031b8e8a29e0
Diffstat (limited to 'java/src/com/android/inputmethod/keyboard/Key.java')
-rw-r--r--java/src/com/android/inputmethod/keyboard/Key.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/Key.java b/java/src/com/android/inputmethod/keyboard/Key.java
index 9cf64e151..8baf3f7d1 100644
--- a/java/src/com/android/inputmethod/keyboard/Key.java
+++ b/java/src/com/android/inputmethod/keyboard/Key.java
@@ -93,7 +93,7 @@ public class Key {
/** Popup characters */
public final CharSequence[] mPopupCharacters;
/** Popup keyboard maximum column number */
- public final int mMaxPopupColumn;
+ public final int mMaxMiniKeyboardColumn;
/**
* Flags that specify the anchoring to edges of the keyboard for detecting touch events
@@ -228,7 +228,7 @@ public class Key {
mSticky = false;
mRepeatable = false;
mPopupCharacters = null;
- mMaxPopupColumn = 0;
+ mMaxMiniKeyboardColumn = 0;
mLabel = label;
mOutputText = outputText;
mCode = code;
@@ -323,9 +323,9 @@ public class Key {
} else {
mPopupCharacters = popupCharacters;
}
- mMaxPopupColumn = style.getInt(keyboardAttr,
- R.styleable.Keyboard_Key_maxPopupKeyboardColumn,
- params.mMaxPopupColumn);
+ mMaxMiniKeyboardColumn = style.getInt(keyboardAttr,
+ R.styleable.Keyboard_Key_maxMiniKeyboardColumn,
+ params.mMaxMiniKeyboardColumn);
mRepeatable = style.getBoolean(keyAttr, R.styleable.Keyboard_Key_isRepeatable, false);
mFunctional = style.getBoolean(keyAttr, R.styleable.Keyboard_Key_isFunctional, false);