From 3be35526b66418c9ccd664523620c8c7cde550b5 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Wed, 23 Jul 2003 12:14:57 +0000 Subject: removed unneeded prototypes. 2003-07-23 Rodrigo Moya * gui/e-day-view.h: * gui/e-week-view.h: removed unneeded prototypes. * gui/e-cal-view.[ch] (e_cal_view_get_visible_time_range): new function. (selection_received): deal correctly with the selected time range. * gui/e-week-view.c (e_week_view_get_visible_time_range): made it private as the implementation of the 'get_visible_time_range' virtual method. * gui/e-day-view.c (e_day_view_get_visible_time_range): ditto. * gui/gnome-cal.c (gnome_calendar_direction): merged redundant 'case'. (focus_current_view): removed redundant code. svn path=/trunk/; revision=21897 --- calendar/gui/e-day-view.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'calendar/gui/e-day-view.h') diff --git a/calendar/gui/e-day-view.h b/calendar/gui/e-day-view.h index dd95eba078..119a5f5fd0 100644 --- a/calendar/gui/e-day-view.h +++ b/calendar/gui/e-day-view.h @@ -509,11 +509,6 @@ void e_day_view_set_query (EDayView *day_view, void e_day_view_set_default_category (EDayView *day_view, const char *category); -/* Gets the visible time range. Returns FALSE if no time range has been set. */ -gboolean e_day_view_get_visible_time_range (EDayView *day_view, - time_t *start_time, - time_t *end_time); - /* Whether we are displaying a work-week, in which case the display always starts on the first day of the working week. */ gboolean e_day_view_get_work_week_view (EDayView *day_view); @@ -572,11 +567,6 @@ void e_day_view_set_timezone (EDayView *day_view, icaltimezone *zone); -/* Clipboard-related functions */ -void e_day_view_cut_clipboard (EDayView *day_view); -void e_day_view_copy_clipboard (EDayView *day_view); -void e_day_view_paste_clipboard (EDayView *day_view); - void e_day_view_delete_event (EDayView *day_view); void e_day_view_delete_occurrence (EDayView *day_view); @@ -584,8 +574,6 @@ void e_day_view_delete_occurrence (EDayView *day_view); /* Returns the number of selected events (0 or 1 at present). */ gint e_day_view_get_num_events_selected (EDayView *day_view); -CalComponent *e_day_view_get_selected_event (EDayView *day_view); - /* * Internal functions called by the associated canvas items. */ -- cgit