aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-06-06 01:41:42 +0900
committerTadashi G. Takaoka <takaoka@google.com>2014-06-06 13:11:57 +0900
commit3ca65c8fd56724a7b4b3440bccf613e5a1a17513 (patch)
tree291d203dd66334b55d5366e08ae14565deaa325e /java/src/com/android/inputmethod/latin/LatinIME.java
parentb7206b6bcaf73640dd25b00898f5edd1b3edb762 (diff)
downloadlatinime-3ca65c8fd56724a7b4b3440bccf613e5a1a17513.tar.gz
latinime-3ca65c8fd56724a7b4b3440bccf613e5a1a17513.tar.xz
latinime-3ca65c8fd56724a7b4b3440bccf613e5a1a17513.zip
Remove unused supportsSwitchingToShortcutIme attribute
Change-Id: I51c5247ac925a158facb79057f704b763b903552
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index deaf6cdf4..4e12a0a31 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -522,7 +522,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
void loadSettings() {
final Locale locale = mSubtypeSwitcher.getCurrentSubtypeLocale();
final EditorInfo editorInfo = getCurrentInputEditorInfo();
- final InputAttributes inputAttributes = new InputAttributes(editorInfo, isFullscreenMode());
+ final InputAttributes inputAttributes = new InputAttributes(
+ editorInfo, isFullscreenMode(), getPackageName());
mSettings.loadSettings(this, locale, inputAttributes);
final SettingsValues currentSettingsValues = mSettings.getCurrent();
AudioAndHapticFeedbackManager.getInstance().onSettingsChanged(currentSettingsValues);