aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-day-view.c
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 /calendar/gui/e-day-view.c
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
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r--calendar/gui/e-day-view.c6
1 files changed, 3 insertions, 3 deletions
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);