diff options
author | 2012-01-24 11:58:07 +0900 | |
---|---|---|
committer | 2012-01-24 11:58:07 +0900 | |
commit | 5fd11a7f3367d51cea8dc83fb9675c93d82a2e4e (patch) | |
tree | 9b5434dc57eb2963ecd0ed65dcf3c3b4ac56e12b /java/src/com/android | |
parent | 38bff5ac25d6e41f3914c982b1a0d7a88f9f67fa (diff) | |
download | latinime-5fd11a7f3367d51cea8dc83fb9675c93d82a2e4e.tar.gz latinime-5fd11a7f3367d51cea8dc83fb9675c93d82a2e4e.tar.xz latinime-5fd11a7f3367d51cea8dc83fb9675c93d82a2e4e.zip |
Fix a typo
Change-Id: I358350c959d5610214a752b14d7744fe83eb3821
Diffstat (limited to 'java/src/com/android')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 94c47bdc9..a053b9bbb 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -391,7 +391,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar // Working variables for the following methods. private boolean mIsOrientationChanging; - private boolean mPendingSuccesiveImsCallback; + private boolean mPendingSuccessiveImsCallback; private boolean mHasPendingStartInput; private boolean mHasPendingFinishInputView; private boolean mHasPendingFinishInput; @@ -432,7 +432,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar if (mIsOrientationChanging && restarting) { // This is the first onStartInput after orientation changed. mIsOrientationChanging = false; - mPendingSuccesiveImsCallback = true; + mPendingSuccessiveImsCallback = true; } final LatinIME latinIme = getOuterInstance(); executePendingImsCallback(latinIme, editorInfo, restarting); @@ -446,9 +446,9 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar // Typically this is the second onStartInputView after orientation changed. resetPendingImsCallback(); } else { - if (mPendingSuccesiveImsCallback) { + if (mPendingSuccessiveImsCallback) { // This is the first onStartInputView after orientation changed. - mPendingSuccesiveImsCallback = false; + mPendingSuccessiveImsCallback = false; resetPendingImsCallback(); sendMessageDelayed(obtainMessage(MSG_PENDING_IMS_CALLBACK), PENDING_IMS_CALLBACK_DURATION); |