diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-07-23 20:14:57 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-07-23 20:14:57 +0800 |
commit | 3be35526b66418c9ccd664523620c8c7cde550b5 (patch) | |
tree | 559eb54a4569725787a3a21440e4506f5fbdcb8e /calendar/gui/e-day-view.h | |
parent | c1a24b93ef371ae2d2aca8b905b9d3ed72b16083 (diff) | |
download | gsoc2013-evolution-3be35526b66418c9ccd664523620c8c7cde550b5.tar.gz gsoc2013-evolution-3be35526b66418c9ccd664523620c8c7cde550b5.tar.zst gsoc2013-evolution-3be35526b66418c9ccd664523620c8c7cde550b5.zip |
removed unneeded prototypes.
2003-07-23 Rodrigo Moya <rodrigo@ximian.com>
* 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
Diffstat (limited to 'calendar/gui/e-day-view.h')
-rw-r--r-- | calendar/gui/e-day-view.h | 12 |
1 files changed, 0 insertions, 12 deletions
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. */ |