talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 2c374dbcac03ca1d6f6a1cefd8c2bf2561983e51
parent af7fe2b206de25767edbbdcd4c003f1d0bb9a56a
Author: Colin Leroy <colin@colino.net>
Date:   Thu,  9 Aug 2012 13:03:39 +0000

2012-08-09 [colin]	3.8.1cvs28

	* src/prefs_filtering.c
		Make treeView type-ahead case insensitive
		Patch by Andreas Ronnquist

Diffstat:
MChangeLog | 6++++++
MPATCHSETS | 1+
Mconfigure.ac | 2+-
Msrc/prefs_filtering.c | 2+-
4 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,9 @@ +2012-08-09 [colin] 3.8.1cvs28 + + * src/prefs_filtering.c + Make treeView type-ahead case insensitive + Patch by Andreas Ronnquist + 2012-08-09 [colin] 3.8.1cvs27 * src/gtk/sslcertwindow.c diff --git a/PATCHSETS b/PATCHSETS @@ -4402,3 +4402,4 @@ ( cvs diff -u -r 1.382.2.606 -r 1.382.2.607 src/compose.c; ) > 3.8.1cvs25.patchset ( cvs diff -u -r 1.9.2.53 -r 1.9.2.54 src/common/ssl.c; cvs diff -u -r 1.4.2.43 -r 1.4.2.44 src/common/ssl_certificate.c; cvs diff -u -r 1.1.4.19 -r 1.1.4.20 src/common/ssl_certificate.h; cvs diff -u -r 1.9.2.35 -r 1.9.2.36 src/gtk/sslcertwindow.c; ) > 3.8.1cvs26.patchset ( cvs diff -u -r 1.9.2.36 -r 1.9.2.37 src/gtk/sslcertwindow.c; ) > 3.8.1cvs27.patchset +( cvs diff -u -r 1.59.2.90 -r 1.59.2.91 src/prefs_filtering.c; ) > 3.8.1cvs28.patchset diff --git a/configure.ac b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=8 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=27 +EXTRA_VERSION=28 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/prefs_filtering.c b/src/prefs_filtering.c @@ -911,7 +911,7 @@ static gboolean prefs_filtering_search_func_cb (GtkTreeModel *model, gint column if (!store_string || !key) return FALSE; - retval = (strncmp (key, store_string, strlen(key)) != 0); + retval = (g_ascii_strncasecmp (key, store_string, strlen(key)) != 0); g_free(store_string); debug_print("selecting row\n");