summaryrefslogtreecommitdiff
path: root/src/com/android/dialer/calllog
diff options
context:
space:
mode:
authorIhab Awad <ihab@google.com>2014-11-13 09:34:43 -0800
committerIhab Awad <ihab@google.com>2014-11-28 15:54:36 -0800
commite80b9c19c70c3d18732d77fa6d56283dfecbe58d (patch)
tree2f47e5bf7a6a1297402c1e28d37c91e5138eeefc /src/com/android/dialer/calllog
parent910fcbff0051d389a449c0ec57b825458e8f9015 (diff)
Telecom API updates (2/6)
Bug: 18292176 Change-Id: I3d5229a44bff032178bf2eb9fde633a10db8c7d8
Diffstat (limited to 'src/com/android/dialer/calllog')
-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 2eaf94937..3979a3e5e 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.getHighlightColor();
+ return account == null ? PhoneAccount.NO_HIGHLIGHT_COLOR : account.getHighlightColor();
}
/**