diff options
author | Jeff Brown <jeffbrown@google.com> | 2012-09-25 17:03:16 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-09-25 17:03:17 -0700 |
commit | 6a5e32a658ac62e72092e3b5d8fb3b99cc4b5158 (patch) | |
tree | 7409c5aea81648d52b6d61eed756b67aac4e738d /src | |
parent | cd207ad437085fe3757259bd708fe74f68179094 (diff) | |
parent | 075cb30d4ce12805f43ae71cee27b8f0cdbc0149 (diff) | |
download | packages_apps_settings-6a5e32a658ac62e72092e3b5d8fb3b99cc4b5158.zip packages_apps_settings-6a5e32a658ac62e72092e3b5d8fb3b99cc4b5158.tar.gz packages_apps_settings-6a5e32a658ac62e72092e3b5d8fb3b99cc4b5158.tar.bz2 |
Merge "Move OVERLAY_DISPLAY_DEVICES to Global." into jb-mr1-dev
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/settings/DevelopmentSettings.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java index 705ce55..b6a2beb 100644 --- a/src/com/android/settings/DevelopmentSettings.java +++ b/src/com/android/settings/DevelopmentSettings.java @@ -706,8 +706,8 @@ public class DevelopmentSettings extends PreferenceFragment } private void updateOverlayDisplayDevicesOptions() { - String value = Settings.System.getString(getActivity().getContentResolver(), - Settings.Secure.OVERLAY_DISPLAY_DEVICES); + String value = Settings.Global.getString(getActivity().getContentResolver(), + Settings.Global.OVERLAY_DISPLAY_DEVICES); if (value == null) { value = ""; } @@ -725,8 +725,8 @@ public class DevelopmentSettings extends PreferenceFragment } private void writeOverlayDisplayDevicesOptions(Object newValue) { - Settings.System.putString(getActivity().getContentResolver(), - Settings.Secure.OVERLAY_DISPLAY_DEVICES, (String)newValue); + Settings.Global.putString(getActivity().getContentResolver(), + Settings.Global.OVERLAY_DISPLAY_DEVICES, (String)newValue); updateOverlayDisplayDevicesOptions(); } |