am 6e0bff0d: Merge "Fix the message when Bluetooth is turning off while on the tethering menu."

* commit '6e0bff0d1bc52b90a4219b26f93ed41329415098':
  Fix the message when Bluetooth is turning off while on the tethering menu.
This commit is contained in:
Amith Yamasani
2013-03-08 10:35:04 -08:00
committed by Android Git Automerger

View File

@@ -388,7 +388,7 @@ public class TetherSettings extends SettingsPreferenceFragment
int btState = adapter.getState();
if (btState == BluetoothAdapter.STATE_TURNING_OFF) {
mBluetoothTether.setEnabled(false);
mBluetoothTether.setSummary(R.string.wifi_stopping);
mBluetoothTether.setSummary(R.string.bluetooth_turning_off);
} else if (btState == BluetoothAdapter.STATE_TURNING_ON) {
mBluetoothTether.setEnabled(false);
mBluetoothTether.setSummary(R.string.bluetooth_turning_on);