aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-shell-backend.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-23 00:03:46 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-23 00:03:46 +0800
commit7094f32df13b8ddfe0e41c746481efb6d9f750fd (patch)
treee97c4284b0737f976895b60f3879c93e558df90e /modules/mail/e-mail-shell-backend.c
parent5c3c117a73f22054fd981d5011d01bbb3d60e711 (diff)
downloadgsoc2013-evolution-7094f32df13b8ddfe0e41c746481efb6d9f750fd.tar
gsoc2013-evolution-7094f32df13b8ddfe0e41c746481efb6d9f750fd.tar.gz
gsoc2013-evolution-7094f32df13b8ddfe0e41c746481efb6d9f750fd.tar.bz2
gsoc2013-evolution-7094f32df13b8ddfe0e41c746481efb6d9f750fd.tar.lz
gsoc2013-evolution-7094f32df13b8ddfe0e41c746481efb6d9f750fd.tar.xz
gsoc2013-evolution-7094f32df13b8ddfe0e41c746481efb6d9f750fd.tar.zst
gsoc2013-evolution-7094f32df13b8ddfe0e41c746481efb6d9f750fd.zip
Add an extension to configure EWebView.
Make EWebView extensible and register an extension to automatically bind every EWebView instance to the appropriate EShellSettings.
Diffstat (limited to 'modules/mail/e-mail-shell-backend.c')
-rw-r--r--modules/mail/e-mail-shell-backend.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/mail/e-mail-shell-backend.c b/modules/mail/e-mail-shell-backend.c
index de8d4f42d9..00b4a78dc6 100644
--- a/modules/mail/e-mail-shell-backend.c
+++ b/modules/mail/e-mail-shell-backend.c
@@ -408,28 +408,13 @@ mail_shell_backend_window_created_cb (EShell *shell,
GtkWindow *window,
EShellBackend *shell_backend)
{
- EShellSettings *shell_settings;
static gboolean first_time = TRUE;
const gchar *backend_name;
- shell_settings = e_shell_get_shell_settings (shell);
-
/* This applies to both the composer and signature editor. */
if (GTKHTML_IS_EDITOR (window)) {
GList *spell_languages;
- e_binding_new (
- shell_settings, "composer-inline-spelling",
- window, "inline-spelling");
-
- e_binding_new (
- shell_settings, "composer-magic-links",
- window, "magic-links");
-
- e_binding_new (
- shell_settings, "composer-magic-smileys",
- window, "magic-smileys");
-
spell_languages = e_load_spell_languages ();
gtkhtml_editor_set_spell_languages (
GTKHTML_EDITOR (window), spell_languages);