diff options
author | Not Zed <NotZed@Ximian.com> | 2004-10-28 17:25:27 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-10-28 17:25:27 +0800 |
commit | 358fb894df070eeaa0d045b54caff44c9eff648b (patch) | |
tree | 6f8793ca4eda1fdfd32886ee77631af4c307a271 /mail/em-format-html-display.c | |
parent | f90268e273dc75f8be194a3af4ecf17d7d269e6c (diff) | |
download | gsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.tar.gz gsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.tar.zst gsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.zip |
added hook docs, and cleaned up some of the hook point names.
2004-10-28 Not Zed <NotZed@Ximian.com>
* mail-folder-cache.c (real_flush_updates):
* em-message-browser.c (em_message_browser_new):
* em-mailer-prefs.c (em_mailer_prefs_construct):
* em-format-html-display.c (efhd_attachment_popup):
* em-folder-view.c (emfv_popup, emfv_list_done_message_selected)
(emfv_format_popup_event):
* em-folder-tree.c (emft_popup):
* em-folder-properties.c (emfp_dialog_got_folder):
* em-folder-browser.c (em_folder_browser_new):
* em-composer-utils.c (em_utils_reply_to_message):
* em-composer-prefs.c (em_composer_prefs_construct):
* em-account-editor.c (em_account_editor_construct): added hook
docs, and cleaned up some of the hook point names.
svn path=/trunk/; revision=27749
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r-- | mail/em-format-html-display.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index bf452a8fd0..a621dd7254 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -1090,7 +1090,15 @@ efhd_attachment_popup(GtkWidget *w, GdkEventButton *event, struct _attach_puri * return FALSE; } - emp = em_popup_new("org.gnome.mail.formathtmldisplay.popup.part"); + /** @HookPoint-EMPopup: Attachment Button Context Menu + * @Id: org.gnome.evolution.mail.formathtmldisplay.popup + * @Class: org.gnome.evolution.mail.popup:1.0 + * @Target: EMPopupTargetPart + * + * This is the drop-down menu shown when a user clicks on the down arrow + * of the attachment button in inline mail content. + */ + emp = em_popup_new("org.gnome.evolution.mail.formathtmldisplay.popup"); target = em_popup_target_new_part(emp, info->puri.part, info->handle?info->handle->mime_type:NULL); target->target.widget = w; |