diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-02-13 02:40:33 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-02-13 02:40:33 +0800 |
commit | 1afbba4a8b49c9911337f42d040608a8e35e6577 (patch) | |
tree | 40639ca43ec38615a49c7242dc9d238e9fa048d0 /mail | |
parent | 7a1677520d439aee68c5ab0268a951d0b411e3a0 (diff) | |
download | gsoc2013-evolution-1afbba4a8b49c9911337f42d040608a8e35e6577.tar.gz gsoc2013-evolution-1afbba4a8b49c9911337f42d040608a8e35e6577.tar.zst gsoc2013-evolution-1afbba4a8b49c9911337f42d040608a8e35e6577.zip |
Bug 642171 - Implicit libgnome dependency for lockdown GConf keys
Lockdown keys have moved to gsettings-desktop-schemas, so disable
lockdown integration until we're ready for GSettings.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-reader.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index b9948ae240..d7942d0985 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -2974,12 +2974,17 @@ mail_reader_update_actions (EMailReader *reader, shell = e_shell_backend_get_shell (shell_backend); shell_settings = e_shell_get_shell_settings (shell); +#if 0 /* XXX Lockdown keys have moved to gsettings-desktop-schemas, + * so disable lockdown integration until we're ready for + * GSettings. */ #ifndef G_OS_WIN32 disable_printing = e_shell_settings_get_boolean ( shell_settings, "disable-printing"); #else disable_printing = FALSE; #endif +#endif + disable_printing = FALSE; have_enabled_account = (state & E_MAIL_READER_HAVE_ENABLED_ACCOUNT); |