diff options
author | Dan Winship <danw@src.gnome.org> | 2003-11-01 00:49:30 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-11-01 00:49:30 +0800 |
commit | a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d (patch) | |
tree | 306c89e4ab470ba39c961e449f28023d7c766075 /calendar/cal-util | |
parent | bdf19d320404cc3c0aa6900ea711279f80ceab6a (diff) | |
download | gsoc2013-evolution-a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d.tar gsoc2013-evolution-a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d.tar.gz gsoc2013-evolution-a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d.tar.bz2 gsoc2013-evolution-a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d.tar.lz gsoc2013-evolution-a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d.tar.xz gsoc2013-evolution-a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d.tar.zst gsoc2013-evolution-a7ac69cdc61b193cbc62fbe908652cebf1ee8f2d.zip |
Add CAL_STATIC_CAPABILITY_NO_THISANDFUTURE and
* cal-util/cal-util.h: Add CAL_STATIC_CAPABILITY_NO_THISANDFUTURE
and CAL_STATIC_CAPABILITY_NO_THISANDPRIOR
* gui/dialogs/recur-comp.c (recur_component_dialog): Add a
CalClient argument. Use cal_client_get_static_capability to decide
whether or not to offer THISANDFUTURE and THISANDPRIOR options
* gui/dialogs/comp-editor.c (prompt_to_save_changes, save_cmd,
save_close_cmd): Pass a CalClient to recur_component_dialog.
* gui/e-day-view.c (e_day_view_finish_long_event_resize,
e_day_view_finish_resize, e_day_view_on_editing_stopped,
e_day_view_on_top_canvas_drag_data_received,
e_day_view_on_main_canvas_drag_data_received): Likewise
* gui/e-week-view.c (e_week_view_on_editing_stopped): Likewise
* gui/calendar-component.c (impl_createControls): set an exception
if we fail, so evo won't crash.
svn path=/trunk/; revision=23152
Diffstat (limited to 'calendar/cal-util')
-rw-r--r-- | calendar/cal-util/cal-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-util.h b/calendar/cal-util/cal-util.h index 48bce483f8..0946380b36 100644 --- a/calendar/cal-util/cal-util.h +++ b/calendar/cal-util/cal-util.h @@ -115,6 +115,8 @@ gboolean cal_util_event_dates_match (icalcomponent *icalcomp1, icalcomponent *ic #define CAL_STATIC_CAPABILITY_NO_EMAIL_ALARMS "no-email-alarms" #define CAL_STATIC_CAPABILITY_NO_PROCEDURE_ALARMS "no-procedure-alarms" #define CAL_STATIC_CAPABILITY_NO_TASK_ASSIGNMENT "no-task-assignment" +#define CAL_STATIC_CAPABILITY_NO_THISANDFUTURE "no-thisandfuture" +#define CAL_STATIC_CAPABILITY_NO_THISANDPRIOR "no-thisandprior" #define CAL_STATIC_CAPABILITY_NO_TRANSPARENCY "no-transparency" #define CAL_STATIC_CAPABILITY_ONE_ALARM_ONLY "one-alarm-only" #define CAL_STATIC_CAPABILITY_ORGANIZER_MUST_ATTEND "organizer-must-attend" |