summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIhab Awad <ihab@google.com>2014-11-12 00:28:27 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-12 00:28:27 +0000
commit51c4dfb5d20c8da65deb4b9d1f79f65d9df52608 (patch)
tree4f42134baba8271cc30ac59c02119a468a209779
parente5ada1226d25e0db8e9f616c4d0240b0909fca4d (diff)
parent34bfbee9bbb5e618fa5e7c6f4fcbc7da58c6f279 (diff)
am 34bfbee9: am 94264587: Update PhoneAccount icon API (3/6)
* commit '34bfbee9bbb5e618fa5e7c6f4fcbc7da58c6f279': Update PhoneAccount icon API (3/6)
-rw-r--r--src/com/android/dialer/calllog/PhoneAccountUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/dialer/calllog/PhoneAccountUtils.java b/src/com/android/dialer/calllog/PhoneAccountUtils.java
index 7ab212fdd..4f85abf81 100644
--- a/src/com/android/dialer/calllog/PhoneAccountUtils.java
+++ b/src/com/android/dialer/calllog/PhoneAccountUtils.java
@@ -73,7 +73,7 @@ public class PhoneAccountUtils {
*/
public static int getAccountColor(Context context, PhoneAccountHandle accountHandle) {
PhoneAccount account = getAccountOrNull(context, accountHandle);
- return account == null ? PhoneAccount.NO_COLOR : account.getColor();
+ return account == null ? PhoneAccount.NO_COLOR : account.getIconTint();
}
/**