From 65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Fri, 27 Dec 2013 23:55:53 +0000 Subject: Fri Dec 27 23:54:04 UTC 2013 --- community/almanah/update-gtkspell3-support.patch | 90 ------------------------ 1 file changed, 90 deletions(-) delete mode 100644 community/almanah/update-gtkspell3-support.patch (limited to 'community/almanah/update-gtkspell3-support.patch') diff --git a/community/almanah/update-gtkspell3-support.patch b/community/almanah/update-gtkspell3-support.patch deleted file mode 100644 index aa2a81159..000000000 --- a/community/almanah/update-gtkspell3-support.patch +++ /dev/null @@ -1,90 +0,0 @@ -From 114c4f78ac9882be51c4154751760bd4fea48403 Mon Sep 17 00:00:00 2001 -From: Álvaro Peña -Date: Wed, 06 Feb 2013 10:12:54 +0000 -Subject: Update GtkSpell 3 support - ---- -diff --git a/configure.ac b/configure.ac -index b89ba74..fbe6889 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -95,7 +95,7 @@ AC_SUBST(EVO_LIBS) - - dnl Spell checking - if test $spell_checking = "true"; then -- PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell-3.0) -+ PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell3-3.0) - AC_SUBST(SPELL_CHECKING_CFLAGS) - AC_SUBST(SPELL_CHECKING_LIBS) - fi -diff --git a/src/main-window.c b/src/main-window.c -index fb931e1..2fe01ef 100644 ---- a/src/main-window.c -+++ b/src/main-window.c -@@ -1109,7 +1109,7 @@ mw_calendar_day_selected_cb (AlmanahCalendarButton *calendar_button, AlmanahMain - AlmanahEventManager *event_manager; - GDate calendar_date; - #ifdef ENABLE_SPELL_CHECKING -- GtkSpell *gtkspell; -+ GtkSpellChecker *gtkspell; - #endif /* ENABLE_SPELL_CHECKING */ - AlmanahMainWindowPrivate *priv = main_window->priv; - AlmanahEntry *entry; -@@ -1166,9 +1166,9 @@ mw_calendar_day_selected_cb (AlmanahCalendarButton *calendar_button, AlmanahMain - - #ifdef ENABLE_SPELL_CHECKING - /* Ensure the spell-checking is updated */ -- gtkspell = gtkspell_get_from_text_view (priv->entry_view); -+ gtkspell = gtk_spell_checker_get_from_text_view (priv->entry_view); - if (gtkspell != NULL) { -- gtkspell_recheck_all (gtkspell); -+ gtk_spell_checker_recheck_all (gtkspell); - gtk_widget_queue_draw (GTK_WIDGET (priv->entry_view)); - } - #endif /* ENABLE_SPELL_CHECKING */ -@@ -1326,13 +1326,13 @@ enable_spell_checking (AlmanahMainWindow *self, GError **error) - { - AlmanahApplication *application; - GSettings *settings; -- GtkSpell *gtkspell; -+ GtkSpellChecker *gtkspell; - gchar *spelling_language; - GtkTextTagTable *table; - GtkTextTag *tag; - - /* Bail out if spell checking's already enabled */ -- if (gtkspell_get_from_text_view (self->priv->entry_view) != NULL) -+ if (gtk_spell_checker_get_from_text_view (self->priv->entry_view) != NULL) - return TRUE; - - /* If spell checking wasn't already enabled, we have a dummy gtkspell-misspelled text tag to destroy */ -@@ -1353,7 +1353,9 @@ enable_spell_checking (AlmanahMainWindow *self, GError **error) - spelling_language = NULL; - } - -- gtkspell = gtkspell_new_attach (self->priv->entry_view, spelling_language, error); -+ gtkspell = gtk_spell_checker_new (); -+ gtk_spell_checker_set_language (gtkspell, spelling_language, error); -+ gtk_spell_checker_attach (gtkspell, self->priv->entry_view); - g_free (spelling_language); - - if (gtkspell == NULL) -@@ -1364,13 +1366,13 @@ enable_spell_checking (AlmanahMainWindow *self, GError **error) - static void - disable_spell_checking (AlmanahMainWindow *self) - { -- GtkSpell *gtkspell; -+ GtkSpellChecker *gtkspell; - GtkTextTagTable *table; - GtkTextTag *tag; - -- gtkspell = gtkspell_get_from_text_view (self->priv->entry_view); -+ gtkspell = gtk_spell_checker_get_from_text_view (self->priv->entry_view); - if (gtkspell != NULL) -- gtkspell_detach (gtkspell); -+ gtk_spell_checker_detach (gtkspell); - - /* Remove the old gtkspell-misspelling text tag */ - table = gtk_text_buffer_get_tag_table (self->priv->entry_buffer); --- -cgit v0.9.1 -- cgit v1.2.3-54-g00ecf