Merge branch 'master' into honeycomb-release

This commit is contained in:
The Android Automerger
2010-10-26 07:07:58 -07:00
2 changed files with 4 additions and 2 deletions

View File

@@ -718,10 +718,10 @@
<string name="device_admin_title">Device administration</string> <string name="device_admin_title">Device administration</string>
<!-- Title of preference to manage device admins --> <!-- Title of preference to manage device admins -->
<string name="manage_device_admin">Select device administrators</string> <string name="manage_device_admin">Device administrators</string>
<!-- Summary of preference to manage device policies --> <!-- Summary of preference to manage device policies -->
<string name="manage_device_admin_summary">Add or remove device administrators</string> <string name="manage_device_admin_summary">View or deactivate device administrators</string>
<!-- Bluetooth settings --> <!-- Bluetooth settings -->
<!-- Bluetooth settings check box title on Main Settings screen --> <!-- Bluetooth settings check box title on Main Settings screen -->

View File

@@ -234,6 +234,8 @@ public class ApnEditor extends PreferenceActivity
int authVal = mCursor.getInt(AUTH_TYPE_INDEX); int authVal = mCursor.getInt(AUTH_TYPE_INDEX);
if (authVal != -1) { if (authVal != -1) {
mAuthType.setValueIndex(authVal); mAuthType.setValueIndex(authVal);
} else {
mAuthType.setValue(null);
} }
} }