diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-24 06:03:46 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-24 06:03:46 +0800 |
commit | b29fc16e4b9130c44ec5702851166466164fbbf8 (patch) | |
tree | 234c8e0c3f41fa657b805453f9b70cbc0ea06754 /calendar | |
parent | aaedfc462856ab8c6f4601931150aae518ae0ab5 (diff) | |
download | gsoc2013-evolution-b29fc16e4b9130c44ec5702851166466164fbbf8.tar gsoc2013-evolution-b29fc16e4b9130c44ec5702851166466164fbbf8.tar.gz gsoc2013-evolution-b29fc16e4b9130c44ec5702851166466164fbbf8.tar.bz2 gsoc2013-evolution-b29fc16e4b9130c44ec5702851166466164fbbf8.tar.lz gsoc2013-evolution-b29fc16e4b9130c44ec5702851166466164fbbf8.tar.xz gsoc2013-evolution-b29fc16e4b9130c44ec5702851166466164fbbf8.tar.zst gsoc2013-evolution-b29fc16e4b9130c44ec5702851166466164fbbf8.zip |
Set vtype of new CalComponent (e_week_view_on_new_appointment): ditto
2000-08-23 JP Rosevear <jpr@helixcode.com>
* gui/e-week-view.c (e_week_view_key_press): Set vtype of new
CalComponent
(e_week_view_on_new_appointment): ditto
* gui/e-day-view.c (e_day_view_on_new_appointment): ditto
svn path=/trunk/; revision=4990
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/e-day-view.c | 1 | ||||
-rw-r--r-- | calendar/gui/e-week-view.c | 4 |
3 files changed, 12 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index b41a4471f2..07a1f54aa6 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,13 @@ 2000-08-23 JP Rosevear <jpr@helixcode.com> + * gui/e-week-view.c (e_week_view_key_press): Set vtype of new + CalComponent + (e_week_view_on_new_appointment): ditto + + * gui/e-day-view.c (e_day_view_on_new_appointment): ditto + +2000-08-23 JP Rosevear <jpr@helixcode.com> + * gui/e-day-view-time-item.c: Include gnome.h for gettext purposes * gui/gnome-cal.c: ditto diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index c14da5f58f..d8e52e683b 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -2407,6 +2407,7 @@ e_day_view_on_new_appointment (GtkWidget *widget, gpointer data) day_view = E_DAY_VIEW (data); comp = cal_component_new (); + cal_component_set_new_vtype (comp, CAL_COMPONENT_EVENT); e_day_view_get_selected_time_range (day_view, &dtstart, &dtend); date.value = g_new (struct icaltimetype, 1); diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index faf78db567..4a84aed29e 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -2626,6 +2626,7 @@ e_week_view_key_press (GtkWidget *widget, GdkEventKey *event) /* Add a new event covering the selected range. */ comp = cal_component_new (); + cal_component_set_new_vtype (comp, CAL_COMPONENT_EVENT); dtstart = week_view->day_starts[week_view->selection_start_day]; dtend = week_view->day_starts[week_view->selection_end_day + 1]; @@ -2742,7 +2743,8 @@ e_week_view_on_new_appointment (GtkWidget *widget, gpointer data) week_view = E_WEEK_VIEW (data); comp = cal_component_new (); - + cal_component_set_new_vtype (comp, CAL_COMPONENT_EVENT); + date.value = g_new0 (struct icaltimetype, 1); *date.value = |