aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-account-editor.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-10-28 17:25:27 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-10-28 17:25:27 +0800
commit358fb894df070eeaa0d045b54caff44c9eff648b (patch)
tree6f8793ca4eda1fdfd32886ee77631af4c307a271 /mail/em-account-editor.c
parentf90268e273dc75f8be194a3af4ecf17d7d269e6c (diff)
downloadgsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.tar
gsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.tar.gz
gsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.tar.bz2
gsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.tar.lz
gsoc2013-evolution-358fb894df070eeaa0d045b54caff44c9eff648b.tar.xz
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-account-editor.c')
-rw-r--r--mail/em-account-editor.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c
index f2d56c3463..5febf6c59f 100644
--- a/mail/em-account-editor.c
+++ b/mail/em-account-editor.c
@@ -2414,9 +2414,25 @@ em_account_editor_construct(EMAccountEditor *emae, EAccount *account, em_account
gui->providers = g_list_sort(camel_provider_list(TRUE), (GCompareFunc)provider_compare);
if (type == EMAE_NOTEBOOK) {
+ /** @HookPoint-EMConfig: Mail Account Editor
+ * @Id: org.gnome.evolution.mail.config.accountEditor
+ * @Type: E_CONFIG_BOOK
+ * @Class: org.gnome.evolution.mail.config:1.0
+ * @Target: EMConfigTargetAccount
+ *
+ * The account editor window.
+ */
ec = em_config_new(E_CONFIG_BOOK, "org.gnome.evolution.mail.config.accountEditor");
items = emae_editor_items;
} else {
+ /** @HookPoint-EMConfig: New Mail Account Druid
+ * @Id: org.gnome.evolution.mail.config.accountDruid
+ * @Type: E_CONFIG_DRUID
+ * @Class: org.gnome.evolution.mail.config:1.0
+ * @Target: EMConfigTargetAccount
+ *
+ * The new mail account druid.
+ */
ec = em_config_new(E_CONFIG_DRUID, "org.gnome.evolution.mail.config.accountDruid");
items = emae_druid_items;
}