Fix swapped alphabet and symbols keyboards

Change-Id: I956684332d607cb9ab01d12af7a924c15def7fce
This commit is contained in:
Tadashi G. Takaoka 2011-12-16 21:12:06 +09:00
parent 43c0a034bd
commit 854302282d

View file

@ -303,13 +303,13 @@ public class KeyboardSwitcher implements KeyboardState.SwitchActions,
// Implements {@link KeyboardState.SwitchActions}.
@Override
public void setSymbolsKeyboard() {
setKeyboard(mKeyboardSet.getMainKeyboard());
setKeyboard(mKeyboardSet.getSymbolsKeyboard());
}
// Implements {@link KeyboardState.SwitchActions}.
@Override
public void setAlphabetKeyboard() {
setKeyboard(mKeyboardSet.getSymbolsKeyboard());
setKeyboard(mKeyboardSet.getMainKeyboard());
}
// Implements {@link KeyboardState.SwitchActions}.