aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2011-12-09 11:00:44 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-12-09 11:00:44 -0800
commit7ce1dc33132f641b5dca86e5c1aff1108ae9b1ed (patch)
tree2566626e032f25a165e774dcbbdcf1d876522bd9 /java/src/com/android/inputmethod/latin/LatinIME.java
parent7fa66d6b78097416d12e2e296f8c9e11f23ea4dc (diff)
parent0c3b8ce842140aad2087b6ec391177999b87cbb4 (diff)
downloadlatinime-7ce1dc33132f641b5dca86e5c1aff1108ae9b1ed.tar.gz
latinime-7ce1dc33132f641b5dca86e5c1aff1108ae9b1ed.tar.xz
latinime-7ce1dc33132f641b5dca86e5c1aff1108ae9b1ed.zip
am 0c3b8ce8: Merge "Move settings method from Utils to SettingsValues"
* commit '0c3b8ce842140aad2087b6ec391177999b87cbb4': 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) {