diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2010-07-14 01:00:19 +0800 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-07-15 23:48:45 +0800 |
commit | 0f7b73d6396ccc08c479c86759c0a3016a1aaf3e (patch) | |
tree | ecbca25b3dc91b82f54f6282522acf66c2602ccc /modules | |
parent | d3d4fbbe25bccb73bfadef4f5b60a5c9f44aae2b (diff) | |
download | gsoc2013-evolution-0f7b73d6396ccc08c479c86759c0a3016a1aaf3e.tar.gz gsoc2013-evolution-0f7b73d6396ccc08c479c86759c0a3016a1aaf3e.tar.zst gsoc2013-evolution-0f7b73d6396ccc08c479c86759c0a3016a1aaf3e.zip |
Bug 624204 - Warn when replying privately to a mailing list message
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mail/e-mail-shell-settings.c | 4 | ||||
-rw-r--r-- | modules/mail/em-composer-prefs.c | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/mail/e-mail-shell-settings.c b/modules/mail/e-mail-shell-settings.c index 8839341451..d46972ffd8 100644 --- a/modules/mail/e-mail-shell-settings.c +++ b/modules/mail/e-mail-shell-settings.c @@ -220,6 +220,10 @@ e_mail_shell_settings_init (EShell *shell) "/apps/evolution/mail/prompts/only_bcc"); e_shell_settings_install_property_for_key ( + "composer-prompt-private-list-reply", + "/apps/evolution/mail/prompts/private_list_reply"); + + e_shell_settings_install_property_for_key ( "composer-prompt-empty-subject", "/apps/evolution/mail/prompts/empty_subject"); diff --git a/modules/mail/em-composer-prefs.c b/modules/mail/em-composer-prefs.c index 7c0f39ea31..f2def6b123 100644 --- a/modules/mail/em-composer-prefs.c +++ b/modules/mail/em-composer-prefs.c @@ -417,6 +417,11 @@ em_composer_prefs_construct (EMComposerPrefs *prefs, shell_settings, "composer-prompt-only-bcc", widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkPromptPrivateListReply"); + e_mutual_binding_new ( + shell_settings, "composer-prompt-private-list-reply", + widget, "active"); + widget = e_builder_get_widget (prefs->builder, "chkAutoSmileys"); e_mutual_binding_new ( shell_settings, "composer-magic-smileys", |