diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-03-16 10:19:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-03-16 10:19:47 +0800 |
commit | e91db1e5a1c13a703dd7035b9b2383f2e3820fca (patch) | |
tree | 8fb4eb82871efb1647d1d58579b4add32792d676 /calendar/gui/e-calendar-table.c | |
parent | 0709fc318feae5c38cf678916d54450eff7975c0 (diff) | |
download | gsoc2013-evolution-e91db1e5a1c13a703dd7035b9b2383f2e3820fca.tar.gz gsoc2013-evolution-e91db1e5a1c13a703dd7035b9b2383f2e3820fca.tar.zst gsoc2013-evolution-e91db1e5a1c13a703dd7035b9b2383f2e3820fca.zip |
Updated to use new EPopupMenu API.
2002-03-15 Jeffrey Stedfast <fejj@ximian.com>
* gui/e-day-view.c: Updated to use new EPopupMenu API.
* gui/e-week-view.c: Updated to use new EPopupMenu API.
* gui/e-calendar-table.c: Updated to use new EPopupMenu API.
svn path=/trunk/; revision=16184
Diffstat (limited to 'calendar/gui/e-calendar-table.c')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index e3bbe7673e..62f4d426c9 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -958,29 +958,29 @@ enum { static EPopupMenu tasks_popup_menu [] = { { N_("_Open"), NULL, - e_calendar_table_on_open_task, NULL, MASK_SINGLE }, - { "", NULL, NULL, NULL, MASK_SINGLE }, - + e_calendar_table_on_open_task, NULL, NULL, MASK_SINGLE }, + E_POPUP_SEPARATOR, + { N_("C_ut"), NULL, - e_calendar_table_on_cut, NULL, 0 }, + e_calendar_table_on_cut, NULL, NULL, 0 }, { N_("_Copy"), NULL, - e_calendar_table_on_copy, NULL, 0 }, + e_calendar_table_on_copy, NULL, NULL, 0 }, { N_("_Paste"), NULL, - e_calendar_table_on_paste, NULL, 0 }, - - { "", NULL, NULL, NULL, 0 }, + e_calendar_table_on_paste, NULL, NULL, 0 }, + E_POPUP_SEPARATOR, + { N_("_Mark as Complete"), NULL, - mark_as_complete_cb, NULL, MASK_SINGLE }, + mark_as_complete_cb, NULL, NULL, MASK_SINGLE }, { N_("_Delete this Task"), NULL, - delete_cb, NULL, MASK_SINGLE }, + delete_cb, NULL, NULL, MASK_SINGLE }, { N_("_Mark Tasks as Complete"), NULL, - mark_as_complete_cb, NULL, MASK_MULTIPLE }, + mark_as_complete_cb, NULL, NULL, MASK_MULTIPLE }, { N_("_Delete Selected Tasks"), NULL, - delete_cb, NULL, MASK_MULTIPLE }, + delete_cb, NULL, NULL, MASK_MULTIPLE }, - { NULL, NULL, NULL, NULL, 0 } + E_POPUP_TERMINATOR }; static gint |