diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-03-16 10:20:31 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-03-16 10:20:31 +0800 |
commit | eaaa45115ffe9382758627bb3747210f8a78788b (patch) | |
tree | 0ddf69ad7c11a7a4be9efd5e5652620d6277eb7e /shell/e-activity-handler.c | |
parent | e91db1e5a1c13a703dd7035b9b2383f2e3820fca (diff) | |
download | gsoc2013-evolution-eaaa45115ffe9382758627bb3747210f8a78788b.tar gsoc2013-evolution-eaaa45115ffe9382758627bb3747210f8a78788b.tar.gz gsoc2013-evolution-eaaa45115ffe9382758627bb3747210f8a78788b.tar.bz2 gsoc2013-evolution-eaaa45115ffe9382758627bb3747210f8a78788b.tar.lz gsoc2013-evolution-eaaa45115ffe9382758627bb3747210f8a78788b.tar.xz gsoc2013-evolution-eaaa45115ffe9382758627bb3747210f8a78788b.tar.zst gsoc2013-evolution-eaaa45115ffe9382758627bb3747210f8a78788b.zip |
Updated to use new EPopupMenu API.
2002-03-15 Jeffrey Stedfast <fejj@ximian.com>
* e-activity-handler.c (show_cancellation_popup): Updated to use
new EPopupMenu API.
svn path=/trunk/; revision=16185
Diffstat (limited to 'shell/e-activity-handler.c')
-rw-r--r-- | shell/e-activity-handler.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-activity-handler.c b/shell/e-activity-handler.c index d132fe0c8e..34afb7fb65 100644 --- a/shell/e-activity-handler.c +++ b/shell/e-activity-handler.c @@ -159,10 +159,10 @@ show_cancellation_popup (ActivityInfo *activity_info, { GtkMenu *popup; EPopupMenu items[] = { - { N_("Show Details"), NULL, task_widget_show_details_callback, NULL, 0 }, - { "", NULL, NULL, NULL, 0 }, - { N_("Cancel Operation"), NULL, task_widget_cancel_callback, NULL, 0 }, - { NULL } + { N_("Show Details"), NULL, task_widget_show_details_callback, NULL, NULL, 0 }, + E_POPUP_SEPARATOR, + { N_("Cancel Operation"), NULL, task_widget_cancel_callback, NULL, NULL, 0 }, + E_POPUP_TERMINATOR }; /* FIXME: We should gray out things properly here. */ |