aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-10-24 00:28:40 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-10-24 00:28:40 +0800
commit86c72e886a8ee0bdca1a595fb887625f35643e3f (patch)
tree27c940e1d7b24e185da53aff878dbfa60c33c7ad
parent39e61ddef32c3781c3a48135210cf618045daf87 (diff)
downloadgsoc2013-evolution-86c72e886a8ee0bdca1a595fb887625f35643e3f.tar
gsoc2013-evolution-86c72e886a8ee0bdca1a595fb887625f35643e3f.tar.gz
gsoc2013-evolution-86c72e886a8ee0bdca1a595fb887625f35643e3f.tar.bz2
gsoc2013-evolution-86c72e886a8ee0bdca1a595fb887625f35643e3f.tar.lz
gsoc2013-evolution-86c72e886a8ee0bdca1a595fb887625f35643e3f.tar.xz
gsoc2013-evolution-86c72e886a8ee0bdca1a595fb887625f35643e3f.tar.zst
gsoc2013-evolution-86c72e886a8ee0bdca1a595fb887625f35643e3f.zip
fix typo (e_day_view_on_main_canvas_drag_data_received): fix C99 issue,
003-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 svn path=/trunk/; revision=23044
-rw-r--r--calendar/ChangeLog20
-rw-r--r--calendar/gui/e-day-view.c6
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);