summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/DevelopmentSettings.java
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-08-13 16:03:15 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-13 16:03:15 -0700
commit9e8e9a17836654f041f8c032e4f9c88341a63d4e (patch)
tree72f54f4f30c90bab2e6bec4f05ee1b561b3a751d /src/com/android/settings/DevelopmentSettings.java
parent70372dcfc382c78c41013fa4d9e4a8bdcc7838ae (diff)
parent6fb425e2805a1c27c048fc954d402f4612cbf74d (diff)
downloadpackages_apps_Settings-9e8e9a17836654f041f8c032e4f9c88341a63d4e.zip
packages_apps_Settings-9e8e9a17836654f041f8c032e4f9c88341a63d4e.tar.gz
packages_apps_Settings-9e8e9a17836654f041f8c032e4f9c88341a63d4e.tar.bz2
am 6fb425e2: am eefa61ed: Merge "Settings: Use ICS alert drawable"
* commit '6fb425e2805a1c27c048fc954d402f4612cbf74d': Settings: Use ICS alert drawable
Diffstat (limited to 'src/com/android/settings/DevelopmentSettings.java')
-rw-r--r--src/com/android/settings/DevelopmentSettings.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java
index fc1b096..3c1fc7c 100644
--- a/src/com/android/settings/DevelopmentSettings.java
+++ b/src/com/android/settings/DevelopmentSettings.java
@@ -819,7 +819,7 @@ public class DevelopmentSettings extends PreferenceFragment
mAdbDialog = new AlertDialog.Builder(getActivity()).setMessage(
getActivity().getResources().getString(R.string.adb_warning_message))
.setTitle(R.string.adb_warning_title)
- .setIcon(android.R.drawable.ic_dialog_alert)
+ .setIconAttribute(android.R.attr.alertDialogIcon)
.setPositiveButton(android.R.string.yes, this)
.setNegativeButton(android.R.string.no, this)
.show();