Use g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)

Thu Feb  5 00:59:08 2004  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtkcombo.c (gtk_combo_entry_key_press): Use
	g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)
This commit is contained in:
Matthias Clasen 2004-02-05 00:01:56 +00:00 committed by Matthias Clasen
parent 9a98cd8f87
commit 4fc7347cec
6 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Feb 5 00:59:08 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombo.c (gtk_combo_entry_key_press): Use
g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)
2004-02-04 Federico Mena Quintero <federico@ximian.com>
Fix #59707.

View File

@ -1,3 +1,8 @@
Thu Feb 5 00:59:08 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombo.c (gtk_combo_entry_key_press): Use
g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)
2004-02-04 Federico Mena Quintero <federico@ximian.com>
Fix #59707.

View File

@ -1,3 +1,8 @@
Thu Feb 5 00:59:08 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombo.c (gtk_combo_entry_key_press): Use
g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)
2004-02-04 Federico Mena Quintero <federico@ximian.com>
Fix #59707.

View File

@ -1,3 +1,8 @@
Thu Feb 5 00:59:08 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombo.c (gtk_combo_entry_key_press): Use
g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)
2004-02-04 Federico Mena Quintero <federico@ximian.com>
Fix #59707.

View File

@ -1,3 +1,8 @@
Thu Feb 5 00:59:08 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombo.c (gtk_combo_entry_key_press): Use
g_completion_complete_utf8(). (#133313, Theppitak Karoonboonyanan)
2004-02-04 Federico Mena Quintero <federico@ximian.com>
Fix #59707.

View File

@ -223,7 +223,7 @@ gtk_combo_entry_key_press (GtkEntry * entry, GdkEventKey * event, GtkCombo * com
pos = gtk_editable_get_position (editable);
prefix = gtk_editable_get_chars (editable, 0, pos);
g_completion_complete (cmpl, prefix, &nprefix);
g_completion_complete_utf8 (cmpl, prefix, &nprefix);
if (nprefix && strlen (nprefix) > strlen (prefix))
{