summaryrefslogtreecommitdiffstats
path: root/src/com/android/calendar/GoogleCalendarUriIntentFilter.java
diff options
context:
space:
mode:
authorIsaac Katzenelson <isaack@android.com>2012-04-26 17:39:14 -0700
committerIsaac Katzenelson <isaack@android.com>2012-05-02 17:32:21 -0700
commit0ef732f240516f9f8b8add982f82244e01ec509b (patch)
treeb7e3adea3919b17a2a0bc24e7a795c8622776129 /src/com/android/calendar/GoogleCalendarUriIntentFilter.java
parent5847482420ed321640f305c5fbc619fa87edf35f (diff)
downloadandroid_packages_apps_Calendar-0ef732f240516f9f8b8add982f82244e01ec509b.tar.gz
android_packages_apps_Calendar-0ef732f240516f9f8b8add982f82244e01ec509b.tar.bz2
android_packages_apps_Calendar-0ef732f240516f9f8b8add982f82244e01ec509b.zip
Fix back and home behavior
Change-Id: I9b6085a73043d8d05d99cbfcbc20a8be4f58180d
Diffstat (limited to 'src/com/android/calendar/GoogleCalendarUriIntentFilter.java')
-rw-r--r--src/com/android/calendar/GoogleCalendarUriIntentFilter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/calendar/GoogleCalendarUriIntentFilter.java b/src/com/android/calendar/GoogleCalendarUriIntentFilter.java
index 96a5388a..77e337b1 100644
--- a/src/com/android/calendar/GoogleCalendarUriIntentFilter.java
+++ b/src/com/android/calendar/GoogleCalendarUriIntentFilter.java
@@ -222,7 +222,7 @@ public class GoogleCalendarUriIntentFilter extends Activity {
Uri calendarUri = ContentUris.withAppendedId(Events.CONTENT_URI,
eventId);
intent = new Intent(Intent.ACTION_VIEW, calendarUri);
- intent.setClass(this, AllInOneActivity.class);
+ intent.setClass(this, EventInfoActivity.class);
intent.putExtra(EXTRA_EVENT_BEGIN_TIME, startMillis);
intent.putExtra(EXTRA_EVENT_END_TIME, endMillis);
if (attendeeStatus != ATTENDEE_STATUS_NONE) {