summaryrefslogtreecommitdiffstats
path: root/src/com/android/calendar/AllInOneActivity.java
diff options
context:
space:
mode:
authorIsaac Katzenelson <isaack@android.com>2012-05-07 18:06:34 -0700
committerIsaac Katzenelson <isaack@android.com>2012-05-08 10:44:34 -0700
commit7be65caf4efa310c1b28cc74278eb0f8327039c8 (patch)
tree6899b14b3c65a4eb40537b8a2569185ddd30c06a /src/com/android/calendar/AllInOneActivity.java
parent42ba5efed5945b0e96735ec9ca4b388ae35b56f7 (diff)
downloadandroid_packages_apps_Calendar-7be65caf4efa310c1b28cc74278eb0f8327039c8.tar.gz
android_packages_apps_Calendar-7be65caf4efa310c1b28cc74278eb0f8327039c8.tar.bz2
android_packages_apps_Calendar-7be65caf4efa310c1b28cc74278eb0f8327039c8.zip
Fix today icon
Bug: 5429738 Today icon should display the current day number Change-Id: I3296efe861ac92f66189eaba01ce190822e87c02
Diffstat (limited to 'src/com/android/calendar/AllInOneActivity.java')
-rw-r--r--src/com/android/calendar/AllInOneActivity.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/calendar/AllInOneActivity.java b/src/com/android/calendar/AllInOneActivity.java
index a5b857c4..e8646fae 100644
--- a/src/com/android/calendar/AllInOneActivity.java
+++ b/src/com/android/calendar/AllInOneActivity.java
@@ -1334,7 +1334,7 @@ public class AllInOneActivity extends Activity implements EventHandler,
// Updates the day of the month drawable in the today icon
private void setTodayIcon() {
if (mDayOfMonthIcon == null) {
- mDayOfMonthIcon = new DayOfMonthDrawable();
+ mDayOfMonthIcon = new DayOfMonthDrawable(this);
}
Time now = new Time();
now.set(System.currentTimeMillis());