From 60e8e89604ace4df3124e53e05e1318edba431f4 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Thu, 28 Jun 2001 15:10:40 +0000 Subject: new functions for allowing the execution of clipboard-related commands 2001-06-28 Rodrigo Moya * gui/e-calendar-table.[ch] (e_calendar_table_cut_clipboard), (e_calendar_table_copy_clipboard), (e_calendar_table_paste_clipboard): new functions for allowing the execution of clipboard-related commands * gui/tasks-control.c (tasks_control_cut_cmd), (tasks_control_copy_cmd), (tasks_control_paste_cmd): added callbacks for the new clipboard-related menu entries svn path=/trunk/; revision=10560 --- calendar/gui/gnome-cal.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'calendar/gui/gnome-cal.c') diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 3aade08afa..43e85804d1 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -2016,16 +2016,16 @@ gnome_calendar_paste_clipboard (GnomeCalendar *gcal) switch (priv->current_view_type) { case GNOME_CAL_DAY_VIEW : - e_day_view_paste_clipboard (priv->day_view); + e_day_view_paste_clipboard (E_DAY_VIEW (priv->day_view)); break; case GNOME_CAL_WORK_WEEK_VIEW : - e_day_view_paste_clipboard (priv->work_week_view); + e_day_view_paste_clipboard (E_DAY_VIEW (priv->work_week_view)); break; case GNOME_CAL_WEEK_VIEW : - e_week_view_paste_clipboard (priv->week_view); + e_week_view_paste_clipboard (E_WEEK_VIEW (priv->week_view)); break; case GNOME_CAL_MONTH_VIEW : - e_week_view_paste_clipboard (priv->month_view); + e_week_view_paste_clipboard (E_WEEK_VIEW (priv->month_view)); break; } } -- cgit v1.2.3