diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 20 | ||||
-rw-r--r-- | calendar/gui/e-day-view.c | 6 |
2 files changed, 23 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 3f825ddeff..b8d2c02053 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,23 @@ +2003-10-23 JP Rosevear <jpr@ximian.com> + + * gui/e-day-view.c (e_day_view_on_top_canvas_drag_data_received): + fix typo + (e_day_view_on_main_canvas_drag_data_received): fix C99 issue, fix + typo + +2003-10-23 JP Rosevear <jpr@ximian.com> + + * gui/gnome-cal.c (update_query): use the internal client list to + create the queries + (gnome_calendar_destroy): use the internal client list to + disconnect signal handlers + (gnome_calendar_add_event_uri): add the client to the internal + list + (gnome_calendar_remove_event_uri): remove the client from the + internal list and lookup the client + (gnome_calendar_update_config_settings): use the internal client + list to update the config settings + 2003-10-23 Harry Lu <harry.lu@sun.com> * cal-client/cal-client.c: (cal_client_get_timezone): remove and free diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 92e356af99..d2dc6c6b57 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -6961,7 +6961,7 @@ e_day_view_on_top_canvas_drag_data_received (GtkWidget *widget, icalcomponent_free (icalcomp); } else { - e_cal_add_event (E_CAL_VIEW (day_view), client, dtstart, default_zone, icalcomp, TRUE); + e_cal_view_add_event (E_CAL_VIEW (day_view), client, dtstart, default_zone, icalcomp, TRUE); } gtk_drag_finish (context, TRUE, TRUE, time); @@ -7103,7 +7103,7 @@ e_day_view_on_main_canvas_drag_data_received (GtkWidget *widget, && !drag_from_same_window) { /* We are dragging between different window */ - char *comp_str, *default_tzid;; + char *comp_str, *default_tzid; icalcomponent *icalcomp; icalcomponent_kind kind; time_t dtstart; @@ -7157,7 +7157,7 @@ e_day_view_on_main_canvas_drag_data_received (GtkWidget *widget, icalcomponent_free (icalcomp); } else { - e_cal_add_event (E_CAL_VIEW (day_view), client, dtstart, default_zone, icalcomp, FALSE); + e_cal_view_add_event (E_CAL_VIEW (day_view), client, dtstart, default_zone, icalcomp, FALSE); } gtk_drag_finish (context, TRUE, TRUE, time); |