diff options
author | Elliott Hughes <enh@google.com> | 2014-10-29 17:13:38 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-29 17:13:38 +0000 |
commit | 64a1a901dcd9b3103cc63d5c20de9af6db9d1ada (patch) | |
tree | 7142728c6fd3640438c1aabd076ab83ff85a6f59 /packages/SystemUI/src/com/android/systemui/statusbar | |
parent | 177f91d1ede0cef9fc6c7c29f163b78467c49f8c (diff) | |
parent | 87ce99ca7243e4556a6cfe9f42cc51531301e979 (diff) | |
download | frameworks_base-64a1a901dcd9b3103cc63d5c20de9af6db9d1ada.zip frameworks_base-64a1a901dcd9b3103cc63d5c20de9af6db9d1ada.tar.gz frameworks_base-64a1a901dcd9b3103cc63d5c20de9af6db9d1ada.tar.bz2 |
am 87ce99ca: am ced7ebdb: Merge "Migrate off timeFormat12 and timeFormat24."
* commit '87ce99ca7243e4556a6cfe9f42cc51531301e979':
Migrate off timeFormat12 and timeFormat24.
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/statusbar')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/policy/Clock.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/policy/Clock.java b/packages/SystemUI/src/com/android/systemui/statusbar/policy/Clock.java index 55a0bba..537bfb9 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/policy/Clock.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/policy/Clock.java @@ -149,7 +149,7 @@ public class Clock extends TextView implements DemoMode { final char MAGIC2 = '\uEF01'; SimpleDateFormat sdf; - String format = is24 ? d.timeFormat24 : d.timeFormat12; + String format = is24 ? d.timeFormat_Hm : d.timeFormat_hm; if (!format.equals(mClockFormatString)) { /* * Search for an unquoted "a" in the format string, so we can |