[Commits] prefs_filtering.c 1.59.2.90 1.59.2.91

colin at claws-mail.org colin at claws-mail.org
Thu Aug 9 15:03:40 CEST 2012


Update of /home/claws-mail/claws/src
In directory srv:/tmp/cvs-serv22027/src

Modified Files:
      Tag: gtk2
	prefs_filtering.c 
Log Message:
2012-08-09 [colin]	3.8.1cvs28

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

Index: prefs_filtering.c
===================================================================
RCS file: /home/claws-mail/claws/src/prefs_filtering.c,v
retrieving revision 1.59.2.90
retrieving revision 1.59.2.91
diff -u -d -r1.59.2.90 -r1.59.2.91
--- prefs_filtering.c	7 Jul 2012 07:09:29 -0000	1.59.2.90
+++ prefs_filtering.c	9 Aug 2012 13:03:38 -0000	1.59.2.91
@@ -911,7 +911,7 @@
 	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");



More information about the Commits mailing list