diff options
author | Ihab Awad <ihab@google.com> | 2014-11-11 23:02:23 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-11 23:02:23 +0000 |
commit | 34bfbee9bbb5e618fa5e7c6f4fcbc7da58c6f279 (patch) | |
tree | 5025e0b9395b02443e9a86d5d24336febb90af3d | |
parent | 08d5edff6cbde662ca9c297e762bedad0258b543 (diff) | |
parent | 942645871f85cf8868f5167c5d10f95083474e72 (diff) |
am 94264587: Update PhoneAccount icon API (3/6)
* commit '942645871f85cf8868f5167c5d10f95083474e72':
Update PhoneAccount icon API (3/6)
-rw-r--r-- | src/com/android/dialer/calllog/PhoneAccountUtils.java | 2 |
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(); } /** |