From 913b1fe75548962f7a6f2f6f11ce497459a77d21 Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Sat, 13 Jun 2009 10:12:45 +0000 Subject: [PATCH] 2009-06-13 [colin] 3.7.1cvs75 * src/gtk/spell_entry.c Fix assertion. We can put a NULL gtkaspell to an entry; it just means it won't be spell-checked. --- ChangeLog | 6 ++++++ PATCHSETS | 1 + configure.ac | 2 +- src/gtk/spell_entry.c | 1 - 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fa29a8a8e..c89f09bda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-06-13 [colin] 3.7.1cvs75 + + * src/gtk/spell_entry.c + Fix assertion. We can put a NULL gtkaspell to + an entry; it just means it won't be spell-checked. + 2009-06-12 [mones] 3.7.1cvs74 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index 01c0acca8..cbeac54d8 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3814,3 +3814,4 @@ ( cvs diff -u -r 1.9.2.40 -r 1.9.2.41 src/common/ssl.c; ) > 3.7.1cvs72.patchset ( cvs diff -u -r 1.9.2.41 -r 1.9.2.42 src/common/ssl.c; ) > 3.7.1cvs73.patchset ( cvs diff -u -r 1.382.2.517 -r 1.382.2.518 src/compose.c; cvs diff -u -r 1.94.2.204 -r 1.94.2.205 src/messageview.c; cvs diff -u -r 1.105.2.153 -r 1.105.2.154 src/prefs_account.c; cvs diff -u -r 1.49.2.43 -r 1.49.2.44 src/prefs_account.h; cvs diff -u -r 1.36.2.171 -r 1.36.2.172 src/common/utils.c; cvs diff -u -r 1.20.2.70 -r 1.20.2.71 src/common/utils.h; ) > 3.7.1cvs74.patchset +( cvs diff -u -r 1.1.2.6 -r 1.1.2.7 src/gtk/spell_entry.c; ) > 3.7.1cvs75.patchset diff --git a/configure.ac b/configure.ac index 9c286047c..d524d8a8a 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=74 +EXTRA_VERSION=75 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/gtk/spell_entry.c b/src/gtk/spell_entry.c index ba6a6d84f..7fc6eb106 100644 --- a/src/gtk/spell_entry.c +++ b/src/gtk/spell_entry.c @@ -141,7 +141,6 @@ GtkWidget *claws_spell_entry_new(void) void claws_spell_entry_set_gtkaspell(ClawsSpellEntry *entry, GtkAspell *gtkaspell) { cm_return_if_fail(CLAWS_IS_SPELL_ENTRY(entry)); - cm_return_if_fail(gtkaspell != NULL); entry->gtkaspell = gtkaspell; } -- 2.25.1