diff options
author | Alan Viverette <alanv@google.com> | 2014-07-22 18:40:48 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2014-07-22 18:40:48 -0700 |
commit | 54ccaf6f77f02fe64dce98d72b184176e3fc50d8 (patch) | |
tree | 7a6eee8abfae09f233289763d7610b4ae5388492 /src/com/android/settings/bluetooth | |
parent | 7e974f4c8428b889a45e46aa32832e68c5173f3d (diff) | |
download | packages_apps_Settings-54ccaf6f77f02fe64dce98d72b184176e3fc50d8.zip packages_apps_Settings-54ccaf6f77f02fe64dce98d72b184176e3fc50d8.tar.gz packages_apps_Settings-54ccaf6f77f02fe64dce98d72b184176e3fc50d8.tar.bz2 |
Remove dialog icons
BUG: 16493564
Change-Id: I35ec0a8fc6ce3148b5bf469bfd2b56d0ae6d95ee
Diffstat (limited to 'src/com/android/settings/bluetooth')
-rwxr-xr-x | src/com/android/settings/bluetooth/BluetoothPairingDialog.java | 4 | ||||
-rwxr-xr-x | src/com/android/settings/bluetooth/BluetoothPermissionActivity.java | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/com/android/settings/bluetooth/BluetoothPairingDialog.java b/src/com/android/settings/bluetooth/BluetoothPairingDialog.java index d6f27ef..9922042 100755 --- a/src/com/android/settings/bluetooth/BluetoothPairingDialog.java +++ b/src/com/android/settings/bluetooth/BluetoothPairingDialog.java @@ -161,7 +161,6 @@ public final class BluetoothPairingDialog extends AlertActivity implements private void createUserEntryDialog(CachedBluetoothDeviceManager deviceManager) { final AlertController.AlertParams p = mAlertParams; - p.mIconId = android.R.drawable.ic_dialog_info; p.mTitle = getString(R.string.bluetooth_pairing_request); p.mView = createPinEntryView(deviceManager.getName(mDevice)); p.mPositiveButtonText = getString(android.R.string.ok); @@ -252,7 +251,6 @@ public final class BluetoothPairingDialog extends AlertActivity implements private void createConfirmationDialog(CachedBluetoothDeviceManager deviceManager) { final AlertController.AlertParams p = mAlertParams; - p.mIconId = android.R.drawable.ic_dialog_info; p.mTitle = getString(R.string.bluetooth_pairing_request); p.mView = createView(deviceManager); p.mPositiveButtonText = getString(R.string.bluetooth_pairing_accept); @@ -264,7 +262,6 @@ public final class BluetoothPairingDialog extends AlertActivity implements private void createConsentDialog(CachedBluetoothDeviceManager deviceManager) { final AlertController.AlertParams p = mAlertParams; - p.mIconId = android.R.drawable.ic_dialog_info; p.mTitle = getString(R.string.bluetooth_pairing_request); p.mView = createView(deviceManager); p.mPositiveButtonText = getString(R.string.bluetooth_pairing_accept); @@ -277,7 +274,6 @@ public final class BluetoothPairingDialog extends AlertActivity implements private void createDisplayPasskeyOrPinDialog( CachedBluetoothDeviceManager deviceManager) { final AlertController.AlertParams p = mAlertParams; - p.mIconId = android.R.drawable.ic_dialog_info; p.mTitle = getString(R.string.bluetooth_pairing_request); p.mView = createView(deviceManager); p.mNegativeButtonText = getString(android.R.string.cancel); diff --git a/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java b/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java index 9f071cc..5426f52 100755 --- a/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java +++ b/src/com/android/settings/bluetooth/BluetoothPermissionActivity.java @@ -117,7 +117,6 @@ public class BluetoothPermissionActivity extends AlertActivity implements private void showDialog(String title, int requestType) { final AlertController.AlertParams p = mAlertParams; - p.mIconId = android.R.drawable.ic_dialog_info; p.mTitle = title; if(DEBUG) Log.i(TAG, "showDialog() Request type: " + mRequestType + " this: " + this); switch(requestType) |