diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-10-01 00:48:04 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-10-01 00:48:04 +0800 |
commit | a61075336b590e86aede3936ae0e19577b60f439 (patch) | |
tree | fd4eefaaa2ff92f2c62be3d554ec16a55feceb7f /calendar/gui/e-calendar-table.c | |
parent | 8627c38b49611a820612508ad766993b8b42bec5 (diff) | |
download | gsoc2013-evolution-a61075336b590e86aede3936ae0e19577b60f439.tar.gz gsoc2013-evolution-a61075336b590e86aede3936ae0e19577b60f439.tar.zst gsoc2013-evolution-a61075336b590e86aede3936ae0e19577b60f439.zip |
fixes #258786.
svn path=/trunk/; revision=30451
Diffstat (limited to 'calendar/gui/e-calendar-table.c')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index 6ea5514f45..f789fe40d8 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -1175,7 +1175,7 @@ static EPopupItem tasks_popup_items [] = { { E_POPUP_ITEM, "80.assign", N_("_Assign Task"), e_calendar_table_on_assign, NULL, NULL, E_CAL_POPUP_SELECT_ONE, E_CAL_POPUP_SELECT_EDITABLE|E_CAL_POPUP_SELECT_ASSIGNABLE }, { E_POPUP_ITEM, "90.forward", N_("_Forward as iCalendar"), e_calendar_table_on_forward, NULL, "stock_mail-forward", E_CAL_POPUP_SELECT_ONE }, - { E_POPUP_ITEM, "a0.markonecomplete", N_("_Mark as Complete"), mark_as_complete_cb, NULL, NULL, E_CAL_POPUP_SELECT_ONE, E_CAL_POPUP_SELECT_EDITABLE }, + { E_POPUP_ITEM, "a0.markonecomplete", N_("_Mark as Complete"), mark_as_complete_cb, NULL, NULL, E_CAL_POPUP_SELECT_ONE, E_CAL_POPUP_SELECT_EDITABLE | E_CAL_POPUP_SELECT_NOTCOMPLETE}, { E_POPUP_ITEM, "b0.markmanycomplete", N_("_Mark Selected Tasks as Complete"), mark_as_complete_cb, NULL, NULL, E_CAL_POPUP_SELECT_MANY, E_CAL_POPUP_SELECT_EDITABLE }, { E_POPUP_BAR, "c0.bar" }, |