Add missing parameters to utf8 functions to make it compile.

* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
	missing parameters to utf8 functions to make it compile.
This commit is contained in:
Darin Adler 2001-08-18 00:07:42 +00:00
parent ac1e4ef3d2
commit 65159e1c52
8 changed files with 39 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2001-08-17 Darin Adler <darin@bentspoon.com>
* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
missing parameters to utf8 functions to make it compile.
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeprivate.h:

View File

@ -1,3 +1,8 @@
2001-08-17 Darin Adler <darin@bentspoon.com>
* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
missing parameters to utf8 functions to make it compile.
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeprivate.h:

View File

@ -1,3 +1,8 @@
2001-08-17 Darin Adler <darin@bentspoon.com>
* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
missing parameters to utf8 functions to make it compile.
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeprivate.h:

View File

@ -1,3 +1,8 @@
2001-08-17 Darin Adler <darin@bentspoon.com>
* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
missing parameters to utf8 functions to make it compile.
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeprivate.h:

View File

@ -1,3 +1,8 @@
2001-08-17 Darin Adler <darin@bentspoon.com>
* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
missing parameters to utf8 functions to make it compile.
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeprivate.h:

View File

@ -1,3 +1,8 @@
2001-08-17 Darin Adler <darin@bentspoon.com>
* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
missing parameters to utf8 functions to make it compile.
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeprivate.h:

View File

@ -1,3 +1,8 @@
2001-08-17 Darin Adler <darin@bentspoon.com>
* gtk/gtktreeview.c: (gtk_tree_view_search_equal_func): Add
missing parameters to utf8 functions to make it compile.
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeprivate.h:

View File

@ -8817,10 +8817,10 @@ gtk_tree_view_search_equal_func (GtkTreeModel *model,
gint key_len;
gtk_tree_model_get_value (model, iter, column, &value);
normalized_string = g_utf8_normalize (g_value_get_string (&value), G_NORMALIZE_ALL);
normalized_key = g_utf8_normalize (key, G_NORMALIZE_ALL);
case_normalized_string = g_utf8_casefold (normalized_string);
case_normalized_key = g_utf8_casefold (normalized_key);
normalized_string = g_utf8_normalize (g_value_get_string (&value), -1, G_NORMALIZE_ALL);
normalized_key = g_utf8_normalize (key, -1, G_NORMALIZE_ALL);
case_normalized_string = g_utf8_casefold (normalized_string, -1);
case_normalized_key = g_utf8_casefold (normalized_key, -1);
key_len = strlen (case_normalized_key);