Merge change I78f113bc into eclair

* changes:
  Fix possible crash in AutoCompleteTextView.
diff --git a/core/java/android/bluetooth/BluetoothA2dp.java b/core/java/android/bluetooth/BluetoothA2dp.java
index a736ad1..7c4c9c1 100644
--- a/core/java/android/bluetooth/BluetoothA2dp.java
+++ b/core/java/android/bluetooth/BluetoothA2dp.java
@@ -140,7 +140,7 @@
      *  @return false on immediate error, true otherwise
      *  @hide
      */
-    public int suspendSink(BluetoothDevice device) {
+    public boolean suspendSink(BluetoothDevice device) {
         try {
             return mService.suspendSink(device);
         } catch (RemoteException e) {
@@ -156,7 +156,7 @@
      *  @return false on immediate error, true otherwise
      *  @hide
      */
-    public int resumeSink(BluetoothDevice device) {
+    public boolean resumeSink(BluetoothDevice device) {
         try {
             return mService.resumeSink(device);
         } catch (RemoteException e) {