Use gtk_entry_get_public_chars. Fixes #79532.

2002-04-22  Anders Carlsson  <andersca@gnu.org>

	* gtk/gtkentry.c (gtk_entry_drag_data_get): Use
	gtk_entry_get_public_chars. Fixes #79532.
This commit is contained in:
Anders Carlsson
2002-04-22 20:54:32 +00:00
committed by Anders Carlsson
parent bee067608a
commit e11dcc5426
7 changed files with 31 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2002-04-22 Anders Carlsson <andersca@gnu.org>
* gtk/gtkentry.c (gtk_entry_drag_data_get): Use
gtk_entry_get_public_chars. Fixes #79532.
2002-04-21 Alexander Larsson <alla@lysator.liu.se>
Merged from HEAD:

View File

@@ -1,3 +1,8 @@
2002-04-22 Anders Carlsson <andersca@gnu.org>
* gtk/gtkentry.c (gtk_entry_drag_data_get): Use
gtk_entry_get_public_chars. Fixes #79532.
2002-04-21 Alexander Larsson <alla@lysator.liu.se>
Merged from HEAD:

View File

@@ -1,3 +1,8 @@
2002-04-22 Anders Carlsson <andersca@gnu.org>
* gtk/gtkentry.c (gtk_entry_drag_data_get): Use
gtk_entry_get_public_chars. Fixes #79532.
2002-04-21 Alexander Larsson <alla@lysator.liu.se>
Merged from HEAD:

View File

@@ -1,3 +1,8 @@
2002-04-22 Anders Carlsson <andersca@gnu.org>
* gtk/gtkentry.c (gtk_entry_drag_data_get): Use
gtk_entry_get_public_chars. Fixes #79532.
2002-04-21 Alexander Larsson <alla@lysator.liu.se>
Merged from HEAD:

View File

@@ -1,3 +1,8 @@
2002-04-22 Anders Carlsson <andersca@gnu.org>
* gtk/gtkentry.c (gtk_entry_drag_data_get): Use
gtk_entry_get_public_chars. Fixes #79532.
2002-04-21 Alexander Larsson <alla@lysator.liu.se>
Merged from HEAD:

View File

@@ -1,3 +1,8 @@
2002-04-22 Anders Carlsson <andersca@gnu.org>
* gtk/gtkentry.c (gtk_entry_drag_data_get): Use
gtk_entry_get_public_chars. Fixes #79532.
2002-04-21 Alexander Larsson <alla@lysator.liu.se>
Merged from HEAD:

View File

@@ -4088,7 +4088,7 @@ gtk_entry_drag_data_get (GtkWidget *widget,
if (gtk_editable_get_selection_bounds (editable, &sel_start, &sel_end))
{
gchar *str = gtk_editable_get_chars (editable, sel_start, sel_end);
gchar *str = gtk_entry_get_public_chars (GTK_ENTRY (widget), sel_start, sel_end);
gtk_selection_data_set_text (selection_data, str, -1);