aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer-attachment-bar.c
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-02-07 02:07:14 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-02-07 02:07:14 +0800
commit19789f0e8d22e4898d0ac57ee2cf49ea85952e93 (patch)
tree748ef6ddc05d44fb20adcef9beffd8e0b4e33cfd /composer/e-msg-composer-attachment-bar.c
parent90277b56f9de6d18038256b02c6039583222efac (diff)
downloadgsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar
gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar.gz
gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar.bz2
gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar.lz
gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar.xz
gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.tar.zst
gsoc2013-evolution-19789f0e8d22e4898d0ac57ee2cf49ea85952e93.zip
add accel and icon for the "remove" item in the popup menu. Patch from
2004-02-06 Rodney Dawes <dobey@ximian.com> * e-msg-composer-attachment-bar.c: add accel and icon for the "remove" item in the popup menu. Patch from Paolo Borelli <pborelli@katamail.com> svn path=/trunk/; revision=24653
Diffstat (limited to 'composer/e-msg-composer-attachment-bar.c')
-rw-r--r--composer/e-msg-composer-attachment-bar.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c
index 9e7b42dfca..c2bad68332 100644
--- a/composer/e-msg-composer-attachment-bar.c
+++ b/composer/e-msg-composer-attachment-bar.c
@@ -437,13 +437,14 @@ remove_cb (GtkWidget *widget, gpointer data, GtkWidget *for_widget)
remove_selected (bar);
}
-
+
/* Popup menu handling. */
static GnomeUIInfo icon_context_menu_info[] = {
- GNOMEUIINFO_ITEM (N_("Remove"),
- N_("Remove selected items from the attachment list"),
- remove_cb, NULL),
+ GNOMEUIINFO_ITEM_STOCK (N_("_Remove"),
+ N_("Remove selected items from the attachment list"),
+ remove_cb,
+ GTK_STOCK_REMOVE),
GNOMEUIINFO_MENU_PROPERTIES_ITEM (properties_cb, NULL),
GNOMEUIINFO_END
};