diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-27 11:50:19 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-27 11:50:19 +0800 |
commit | 98d262b594caefd053a2d075e2d8482b2d8a12c8 (patch) | |
tree | 1474ebf4401477049436bf89a1432447995d0b00 /mail/e-mail-shell-module-settings.c | |
parent | e0f414941dd4e13ea074996d10606b0dae7e494b (diff) | |
download | gsoc2013-evolution-98d262b594caefd053a2d075e2d8482b2d8a12c8.tar.gz gsoc2013-evolution-98d262b594caefd053a2d075e2d8482b2d8a12c8.tar.zst gsoc2013-evolution-98d262b594caefd053a2d075e2d8482b2d8a12c8.zip |
Add action groups to support lockdown, starting with printing.
Other categories to follow. Editors still need lockdown support.
svn path=/branches/kill-bonobo/; revision=37136
Diffstat (limited to 'mail/e-mail-shell-module-settings.c')
-rw-r--r-- | mail/e-mail-shell-module-settings.c | 32 |
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); } |