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 /calendar/gui/dialogs/event-page.c | |
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 'calendar/gui/dialogs/event-page.c')
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index f9184133bb..24cbf0906e 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -35,6 +35,8 @@ #include <glib/gi18n.h> #include <gdk/gdkkeysyms.h> +#include "e-util/e-util.h" + #include "../e-alarm-list.h" #include "../e-meeting-attendee.h" #include "../e-meeting-list-view.h" @@ -3612,6 +3614,8 @@ event_page_construct (EventPage *epage, return NULL; } + e_spell_text_view_attach (GTK_TEXT_VIEW (priv->description)); + /* Create entry completion and attach it to the entry */ priv->location_completion = gtk_entry_completion_new (); gtk_entry_set_completion ( |