summaryrefslogtreecommitdiffstats
path: root/src/com/android/calendar/SearchActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/calendar/SearchActivity.java')
-rw-r--r--src/com/android/calendar/SearchActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/calendar/SearchActivity.java b/src/com/android/calendar/SearchActivity.java
index 121c2890..9ccd32ab 100644
--- a/src/com/android/calendar/SearchActivity.java
+++ b/src/com/android/calendar/SearchActivity.java
@@ -95,7 +95,7 @@ public class SearchActivity extends Activity implements CalendarController.Event
// This needs to be created before setContentView
mController = CalendarController.getInstance(this);
- mIsMultipane = Utils.isMultiPaneConfiguration (this);
+ mIsMultipane = Utils.getConfigBool(this, R.bool.multiple_pane_config);
mShowEventDetailsWithAgenda =
Utils.getConfigBool(this, R.bool.show_event_details_with_agenda);
@@ -174,7 +174,7 @@ public class SearchActivity extends Activity implements CalendarController.Event
mEventInfoFragment = new EventInfoFragment(this, event.id,
event.startTime.toMillis(false), event.endTime.toMillis(false),
- (int) event.extraLong, false);
+ (int) event.extraLong, false, EventInfoFragment.FULL_WINDOW_STYLE);
ft.replace(R.id.agenda_event_info, mEventInfoFragment);
ft.commit();
mController.registerEventHandler(R.id.agenda_event_info, mEventInfoFragment);