am 6e9faeff: Merge change I6148797f into eclair

Merge commit '6e9faeff151307482ff5696eaea391ea4e75685e' into eclair-plus-aosp

* commit '6e9faeff151307482ff5696eaea391ea4e75685e':
  Round off new events created from the month view... if the user previously did "Go to Today"
diff --git a/src/com/android/calendar/MonthActivity.java b/src/com/android/calendar/MonthActivity.java
index 7bb80c4..62f8602 100644
--- a/src/com/android/calendar/MonthActivity.java
+++ b/src/com/android/calendar/MonthActivity.java
@@ -122,6 +122,9 @@
     public void goToToday() {
         Time now = new Time();
         now.set(System.currentTimeMillis());
+        now.minute = 0;
+        now.second = 0;
+        now.normalize(false);
 
         TextView title = (TextView) findViewById(R.id.title);
         title.setText(Utils.formatMonthYear(now));