diff options
author | Milan Crha <mcrha@redhat.com> | 2013-11-29 19:59:09 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-11-29 19:59:09 +0800 |
commit | e607ae83d43972943b138915fb86b244498e8845 (patch) | |
tree | c080cef975bfa4c6724a62636f426f1099b4cdae /addressbook/gui/contact-editor | |
parent | c12a958aba0bac2b665cc8a5a3cae2f10d16dd71 (diff) | |
download | gsoc2013-evolution-e607ae83d43972943b138915fb86b244498e8845.tar gsoc2013-evolution-e607ae83d43972943b138915fb86b244498e8845.tar.gz gsoc2013-evolution-e607ae83d43972943b138915fb86b244498e8845.tar.bz2 gsoc2013-evolution-e607ae83d43972943b138915fb86b244498e8845.tar.lz gsoc2013-evolution-e607ae83d43972943b138915fb86b244498e8845.tar.xz gsoc2013-evolution-e607ae83d43972943b138915fb86b244498e8845.tar.zst gsoc2013-evolution-e607ae83d43972943b138915fb86b244498e8845.zip |
Bug #329616 - Spell checking for Event/Task/Memo editors
This is based on the work of Jan-Michael Brummer from bug #705338,
just a little extended to be reusable across whole evolution.
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 27c0f5b5c2..a0c3c8c593 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -37,6 +37,7 @@ #include <gdk-pixbuf/gdk-pixbuf.h> #include "shell/e-shell.h" +#include "e-util/e-util.h" #include "addressbook/printing/e-contact-print.h" #include "addressbook/gui/widgets/eab-gui-util.h" @@ -3111,6 +3112,10 @@ init_all (EContactEditor *editor) width + requisition.width, height + requisition.height); } + + widget = e_builder_get_widget (editor->builder, "text-comments"); + if (widget) + e_spell_text_view_attach (GTK_TEXT_VIEW (widget)); } static void |