diff options
author | JP Rosevear <jpr@novell.com> | 2004-10-20 11:02:25 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-10-20 11:02:25 +0800 |
commit | 378a2a917c1d86bdc4db576eca8f90767f3044dc (patch) | |
tree | 566370f634b4f7a7fa8c90193bf57f393f11f613 /mail/em-account-editor.c | |
parent | c031bc8b1afd8c16adbbef74884ee82073467898 (diff) | |
download | gsoc2013-evolution-378a2a917c1d86bdc4db576eca8f90767f3044dc.tar.gz gsoc2013-evolution-378a2a917c1d86bdc4db576eca8f90767f3044dc.tar.zst gsoc2013-evolution-378a2a917c1d86bdc4db576eca8f90767f3044dc.zip |
convert to org.gnome hook names
2004-10-19 JP Rosevear <jpr@novell.com>
* em-account-editor.c, em-composer-prefs.c, em-config.c,
em-event.c, em-folder-browser.c, em-folder-properties.c,
em-folder-tree.c, em-folder-view.c, em-format-hook.c,
em-format-html-display.c, em-mailer-prefs.c, em-menu.c,
em-message-browser.c, em-popup.c, message-list.c: convert to
org.gnome hook names
svn path=/trunk/; revision=27635
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 5cfde83efb..f2d56c3463 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -2052,7 +2052,7 @@ emae_widget_glade(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, str return glade_xml_get_widget(emae->priv->xml, item->label); } -/* plugin meta-data for "com.novell.evolution.mail.config.accountEditor" */ +/* plugin meta-data for "org.gnome.evolution.mail.config.accountEditor" */ static EMConfigItem emae_editor_items[] = { { E_CONFIG_BOOK, "", "account_editor_notebook", emae_widget_glade }, { E_CONFIG_PAGE, "00.identity", "vboxIdentityBorder", emae_identity_page }, @@ -2128,7 +2128,7 @@ emae_widget_druid_glade(EConfig *ec, EConfigItem *item, struct _GtkWidget *paren return w; } -/* plugin meta-data for "com.novell.evolution.mail.config.accountDruid" */ +/* plugin meta-data for "org.gnome.evolution.mail.config.accountDruid" */ static EMConfigItem emae_druid_items[] = { { E_CONFIG_DRUID, "", "druid", emae_widget_druid_glade }, { E_CONFIG_PAGE_START, "0.start", "start_page", emae_widget_druid_glade }, @@ -2414,10 +2414,10 @@ 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) { - ec = em_config_new(E_CONFIG_BOOK, "com.novell.evolution.mail.config.accountEditor"); + ec = em_config_new(E_CONFIG_BOOK, "org.gnome.evolution.mail.config.accountEditor"); items = emae_editor_items; } else { - ec = em_config_new(E_CONFIG_DRUID, "com.novell.evolution.mail.config.accountDruid"); + ec = em_config_new(E_CONFIG_DRUID, "org.gnome.evolution.mail.config.accountDruid"); items = emae_druid_items; } |