aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-shell-module-settings.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/e-mail-shell-module-settings.c')
-rw-r--r--mail/e-mail-shell-module-settings.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/mail/e-mail-shell-module-settings.c b/mail/e-mail-shell-module-settings.c
index 4acce23ad2..d04bb23b91 100644
--- a/mail/e-mail-shell-module-settings.c
+++ b/mail/e-mail-shell-module-settings.c
@@ -29,11 +29,8 @@
void
e_mail_shell_module_init_settings (EShell *shell)
{
- GConfClient *client;
EShellSettings *shell_settings;
- gpointer object;
- client = gconf_client_get_default ();
shell_settings = e_shell_get_shell_settings (shell);
/* XXX Default values should match the GConf schema.
@@ -433,33 +430,4 @@ e_mail_shell_module_init_settings (EShell *shell)
e_shell_settings_bind_to_gconf (
shell_settings, "composer-top-signature",
"/apps/evolution/mail/composer/top_signature");
-
- /* These properties are not bound directly to GConf keys.
- * XXX Nor should they be stored in GConf to begin with. */
-
- e_shell_settings_install_property (
- g_param_spec_object (
- "accounts",
- NULL,
- NULL,
- E_TYPE_ACCOUNT_LIST,
- G_PARAM_READWRITE));
-
- object = e_account_list_new (client);
- e_shell_settings_set_object (shell_settings, "accounts", object);
- g_object_unref (object);
-
- e_shell_settings_install_property (
- g_param_spec_object (
- "signatures",
- NULL,
- NULL,
- E_TYPE_SIGNATURE_LIST,
- G_PARAM_READWRITE));
-
- object = e_signature_list_new (client);
- e_shell_settings_set_object (shell_settings, "signatures", object);
- g_object_unref (object);
-
- g_object_unref (client);
}