From 54634a1357884543f64d00aa135bf8bc9a525880 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Sat, 27 Oct 2001 22:13:20 +0000 Subject: Delete appointments with empty summaries. Fixes Ximian bug #780. 2001-10-27 Federico Mena Quintero * gui/e-day-view.c (e_day_view_on_editing_stopped): Delete appointments with empty summaries. Fixes Ximian bug #780. * gui/e-week-view.c (e_week_view_on_editing_stopped): Likewise. * gui/dialogs/delete-comp.c (delete_component_dialog): Added an argument to specify whether we unconditionally want single components to be considered as not having a summary. * gui/comp-util.c (cal_comp_confirm_delete_empty_comp): New function. * gui/misc.[ch]: New files with miscellaneous utility functions; moved string_is_empty() over from calendar-model.c. * gui/calendar-model.c: Use the string_is_empty() function from misc.c. * gui/Makefile.am (evolution_calendar_SOURCES): Added misc.[ch] to the list of sources. svn path=/trunk/; revision=14233 --- calendar/gui/comp-util.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'calendar/gui/comp-util.h') diff --git a/calendar/gui/comp-util.h b/calendar/gui/comp-util.h index 6ea71853fa..b8c3ea453d 100644 --- a/calendar/gui/comp-util.h +++ b/calendar/gui/comp-util.h @@ -22,6 +22,7 @@ #ifndef COMP_UTIL_H #define COMP_UTIL_H +#include #include #include @@ -35,4 +36,14 @@ gboolean cal_comp_util_compare_event_timezones (CalComponent *comp, CalClient *client, icaltimezone *zone); +typedef enum { + EMPTY_COMP_REMOVE_LOCALLY, + EMPTY_COMP_REMOVED_FROM_SERVER, + EMPTY_COMP_DO_NOT_REMOVE +} ConfirmDeleteEmptyCompResult; + +ConfirmDeleteEmptyCompResult cal_comp_confirm_delete_empty_comp (CalComponent *comp, + CalClient *client, + GtkWidget *widget); + #endif -- cgit