From dd64b26d1b1a04b26414449a29ed73eebd9cb958 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Tue, 18 Jan 2005 16:18:05 +0000 Subject: killed warnings. (e_week_view_start_editing_event): do nothing if the 2005-01-18 Rodrigo Moya * gui/e-week-view.c (process_component): killed warnings. (e_week_view_start_editing_event): do nothing if the calendar is read only. * gui/e-day-view.c (e_day_view_start_editing_event): ditto. svn path=/trunk/; revision=28440 --- calendar/gui/e-day-view.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'calendar/gui/e-day-view.c') diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 8b9e39149e..485a930f89 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -5519,6 +5519,7 @@ e_day_view_start_editing_event (EDayView *day_view, EDayViewEvent *event; ETextEventProcessor *event_processor = NULL; ETextEventProcessorCommand command; + gboolean read_only; #if 0 g_print ("In e_day_view_start_editing_event\n"); @@ -5537,6 +5538,9 @@ e_day_view_start_editing_event (EDayView *day_view, event_num); } + if (!e_cal_is_read_only (event->comp_data->client, &read_only, NULL) || read_only) + return; + /* If the event is not shown, don't try to edit it. */ if (!event->canvas_item) return; -- cgit