aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2011-12-08 23:09:33 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-12-08 23:09:33 -0800
commit0c3b8ce842140aad2087b6ec391177999b87cbb4 (patch)
tree2566626e032f25a165e774dcbbdcf1d876522bd9 /java/src/com/android/inputmethod/latin/LatinIME.java
parent784181e29fc857cd3a628efa102dc84cd629feb8 (diff)
parented432962175a6f783428bbdcd7168d20097ec05d (diff)
downloadlatinime-0c3b8ce842140aad2087b6ec391177999b87cbb4.tar.gz
latinime-0c3b8ce842140aad2087b6ec391177999b87cbb4.tar.xz
latinime-0c3b8ce842140aad2087b6ec391177999b87cbb4.zip
Merge "Move settings method from Utils to SettingsValues"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 602de9203..4772334ce 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -2323,7 +2323,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
// update keypress sound volume
private void updateSoundEffectVolume() {
- mFxVolume = Utils.getCurrentKeypressSoundVolume(mPrefs, mResources);
+ mFxVolume = SettingsValues.getCurrentKeypressSoundVolume(mPrefs, mResources);
}
// update flags for silent mode
@@ -2336,7 +2336,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
}
private void updateKeypressVibrationDuration() {
- mKeypressVibrationDuration = Utils.getCurrentVibrationDuration(mPrefs, mResources);
+ mKeypressVibrationDuration = SettingsValues.getCurrentVibrationDuration(mPrefs, mResources);
}
private void playKeyClick(int primaryCode) {