From d854f8f83ff78b924408af05fdfdf93a72299726 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Sat, 9 Mar 2013 15:39:28 -0500 Subject: Fix the message when Bluetooth is turning off while on the tethering menu. Currently says "Turning Wifi off..." This change will display "Turning Bluetooth off..." instead. Change-Id: I741e07f3b583e8e4cfb51073fe2556f58d8a89a1 Signed-off-by: Ryan Baxter --- src/com/android/settings/TetherSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/com') diff --git a/src/com/android/settings/TetherSettings.java b/src/com/android/settings/TetherSettings.java index df44e91..d2c99dc 100644 --- a/src/com/android/settings/TetherSettings.java +++ b/src/com/android/settings/TetherSettings.java @@ -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); -- cgit v1.1