aboutsummaryrefslogtreecommitdiffstats
path: root/ddms
diff options
context:
space:
mode:
authorKen Shirriff <kens@google.com>2010-01-21 23:10:47 -0800
committerKen Shirriff <kens@google.com>2010-01-21 23:12:58 -0800
commitffa745e097a4c5007208be8173600c99b0858db7 (patch)
tree057058db05655683c00029398b69dc5f3d976d69 /ddms
parent134fe9753c4ec4950e301c118a5cb06f152b883d (diff)
downloadsdk-ffa745e097a4c5007208be8173600c99b0858db7.zip
sdk-ffa745e097a4c5007208be8173600c99b0858db7.tar.gz
sdk-ffa745e097a4c5007208be8173600c99b0858db7.tar.bz2
Add com.android.calendar to sync authorities.
bug 2388178
Diffstat (limited to 'ddms')
-rw-r--r--ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/SyncCommon.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/SyncCommon.java b/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/SyncCommon.java
index 0a355d1..0fa6f28 100644
--- a/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/SyncCommon.java
+++ b/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/SyncCommon.java
@@ -152,7 +152,8 @@ abstract public class SyncCommon extends EventDisplay {
* @return number series number associated with the authority
*/
protected int getAuth(String authname) throws InvalidTypeException {
- if ("calendar".equals(authname) || "cl".equals(authname)) {
+ if ("calendar".equals(authname) || "cl".equals(authname) ||
+ "com.android.calendar".equals(authname)) {
return CALENDAR;
} else if ("contacts".equals(authname) || "cp".equals(authname) ||
"com.android.contacts".equals(authname)) {