mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-13 05:50:10 +00:00
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:
parent
ac1e4ef3d2
commit
65159e1c52
@ -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>
|
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gtk/gtktreeprivate.h:
|
* gtk/gtktreeprivate.h:
|
||||||
|
@ -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>
|
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gtk/gtktreeprivate.h:
|
* gtk/gtktreeprivate.h:
|
||||||
|
@ -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>
|
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gtk/gtktreeprivate.h:
|
* gtk/gtktreeprivate.h:
|
||||||
|
@ -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>
|
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gtk/gtktreeprivate.h:
|
* gtk/gtktreeprivate.h:
|
||||||
|
@ -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>
|
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gtk/gtktreeprivate.h:
|
* gtk/gtktreeprivate.h:
|
||||||
|
@ -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>
|
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gtk/gtktreeprivate.h:
|
* gtk/gtktreeprivate.h:
|
||||||
|
@ -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>
|
Fri Aug 17 19:30:14 2001 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gtk/gtktreeprivate.h:
|
* gtk/gtktreeprivate.h:
|
||||||
|
@ -8817,10 +8817,10 @@ gtk_tree_view_search_equal_func (GtkTreeModel *model,
|
|||||||
gint key_len;
|
gint key_len;
|
||||||
|
|
||||||
gtk_tree_model_get_value (model, iter, column, &value);
|
gtk_tree_model_get_value (model, iter, column, &value);
|
||||||
normalized_string = g_utf8_normalize (g_value_get_string (&value), G_NORMALIZE_ALL);
|
normalized_string = g_utf8_normalize (g_value_get_string (&value), -1, G_NORMALIZE_ALL);
|
||||||
normalized_key = g_utf8_normalize (key, G_NORMALIZE_ALL);
|
normalized_key = g_utf8_normalize (key, -1, G_NORMALIZE_ALL);
|
||||||
case_normalized_string = g_utf8_casefold (normalized_string);
|
case_normalized_string = g_utf8_casefold (normalized_string, -1);
|
||||||
case_normalized_key = g_utf8_casefold (normalized_key);
|
case_normalized_key = g_utf8_casefold (normalized_key, -1);
|
||||||
|
|
||||||
key_len = strlen (case_normalized_key);
|
key_len = strlen (case_normalized_key);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user