am 7c69397f: Merge "Fix swapped alphabet and symbols keyboards"

* commit '7c69397f147afdc780ce645482f40619282cd7e0':
  Fix swapped alphabet and symbols keyboards
main
Tadashi G. Takaoka 2011-12-16 04:17:57 -08:00 committed by Android Git Automerger
commit 942bc480d5
1 changed files with 2 additions and 2 deletions

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}.