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:
committed by
Anders Carlsson
parent
bee067608a
commit
e11dcc5426
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user