summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Chan <mchan@android.com>2012-05-17 13:20:55 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-05-17 13:20:55 -0700
commitdb91ce4baa66ee1df371d1251bc5a2b67238d851 (patch)
treec85ead1768f17ea3eb2614d147d0534083b49283
parent8f8d5ad9b4de3cd088c05b1dd2961e7cdc80f778 (diff)
parent81153a431671b9e53c32aa3ca7f784d7eaf05a1b (diff)
downloadCalendar-db91ce4baa66ee1df371d1251bc5a2b67238d851.tar.gz
Merge "Correct getViewTypeCount for Calendar AppWidget"android-sdk-adt_r20tools_r20ics-plus-aosp
-rw-r--r--src/com/android/calendar/widget/CalendarAppWidgetService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/calendar/widget/CalendarAppWidgetService.java b/src/com/android/calendar/widget/CalendarAppWidgetService.java
index d385d0fc..084f7b86 100644
--- a/src/com/android/calendar/widget/CalendarAppWidgetService.java
+++ b/src/com/android/calendar/widget/CalendarAppWidgetService.java
@@ -314,7 +314,7 @@ public class CalendarAppWidgetService extends RemoteViewsService {
@Override
public int getViewTypeCount() {
- return 4;
+ return 5;
}
@Override