aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer-attachment-bar.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-10-28 17:25:47 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-10-28 17:25:47 +0800
commit7f73e47a135be5b7353e48d666a3555e6b6fc675 (patch)
tree5854257ed2fe5fc8c9c327775cbce5678fa95d31 /composer/e-msg-composer-attachment-bar.c
parent358fb894df070eeaa0d045b54caff44c9eff648b (diff)
downloadgsoc2013-evolution-7f73e47a135be5b7353e48d666a3555e6b6fc675.tar
gsoc2013-evolution-7f73e47a135be5b7353e48d666a3555e6b6fc675.tar.gz
gsoc2013-evolution-7f73e47a135be5b7353e48d666a3555e6b6fc675.tar.bz2
gsoc2013-evolution-7f73e47a135be5b7353e48d666a3555e6b6fc675.tar.lz
gsoc2013-evolution-7f73e47a135be5b7353e48d666a3555e6b6fc675.tar.xz
gsoc2013-evolution-7f73e47a135be5b7353e48d666a3555e6b6fc675.tar.zst
gsoc2013-evolution-7f73e47a135be5b7353e48d666a3555e6b6fc675.zip
fix the popup id.
2004-10-28 Not Zed <NotZed@Ximian.com> * e-msg-composer.c (drag_data_received): fix the popup id. * e-msg-composer-attachment-bar.c (emcab_popup): added popup doco. svn path=/trunk/; revision=27750
Diffstat (limited to 'composer/e-msg-composer-attachment-bar.c')
-rw-r--r--composer/e-msg-composer-attachment-bar.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c
index 603c6892d7..84aaf8c825 100644
--- a/composer/e-msg-composer-attachment-bar.c
+++ b/composer/e-msg-composer-attachment-bar.c
@@ -509,7 +509,14 @@ emcab_popup(EMsgComposerAttachmentBar *bar, GdkEventButton *event, int id)
for (i=0;i<sizeof(emcab_popups)/sizeof(emcab_popups[0]);i++)
menus = g_slist_prepend(menus, &emcab_popups[i]);
- emp = em_popup_new("org.gnome.evolution.mail.composer.attachmentBar");
+ /** @HookPoint-EMPopup: Composer Attachment Bar Context Menu
+ * @Id: org.gnome.evolution.mail.composer.attachmentbar.popup
+ * @Class: org.gnome.evolution.mail.popup:1.0
+ * @Target: EMPopupTargetAttachments
+ *
+ * This is the context menu on the composer attachment bar.
+ */
+ emp = em_popup_new("org.gnome.evolution.mail.composer.attachmentbar.popup");
e_popup_add_items((EPopup *)emp, menus, emcab_popups_free, bar);
t = em_popup_target_new_attachments(emp, attachments);
t->target.widget = (GtkWidget *)bar;