diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-21 07:12:01 +0800 |
---|---|---|
committer | Fridrich Strba <fridrich.strba@bluewin.ch> | 2010-03-21 07:13:49 +0800 |
commit | 11cd3fda1a54523ffa450b90f7ac859198d49fbe (patch) | |
tree | 93425ceedd71435f243cf16ac452552979f0667b /mail | |
parent | 0b43cfad3226e96bcd84a64be1468083fed10aea (diff) | |
download | gsoc2013-evolution-11cd3fda1a54523ffa450b90f7ac859198d49fbe.tar.gz gsoc2013-evolution-11cd3fda1a54523ffa450b90f7ac859198d49fbe.tar.zst gsoc2013-evolution-11cd3fda1a54523ffa450b90f7ac859198d49fbe.zip |
[win32] Be consistent in disabling the lockdown options.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-reader.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index 9fe438fb4c..7a8d7a9994 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -2159,8 +2159,12 @@ mail_reader_update_actions (EMailReader *reader) shell = e_shell_backend_get_shell (shell_backend); shell_settings = e_shell_get_shell_settings (shell); +#ifndef G_OS_WIN32 disable_printing = e_shell_settings_get_boolean ( shell_settings, "disable-printing"); +#else + disable_printing = FALSE; +#endif have_an_account = (state & E_MAIL_READER_HAVE_ACCOUNT); |