aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gnome-cal.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2001-06-28 23:10:40 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2001-06-28 23:10:40 +0800
commit60e8e89604ace4df3124e53e05e1318edba431f4 (patch)
treefbcd5a0959f66deb2c3750978d920d25f07f3115 /calendar/gui/gnome-cal.c
parentb8430242b75b1aa7a06ec98dfadd4e934879a432 (diff)
downloadgsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar
gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.gz
gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.bz2
gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.lz
gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.xz
gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.zst
gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.zip
new functions for allowing the execution of clipboard-related commands
2001-06-28 Rodrigo Moya <rodrigo@ximian.com> * 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
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r--calendar/gui/gnome-cal.c8
1 files changed, 4 insertions, 4 deletions
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;
}
}