diff --git a/ChangeLog b/ChangeLog index a62438cd4b..b2bfe328cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-04-22 Anders Carlsson + + * gtk/gtkentry.c (gtk_entry_drag_data_get): Use + gtk_entry_get_public_chars. Fixes #79532. + Mon Apr 22 19:24:29 2002 Kristian Rietveld This commit adds stock icon functionality to GtkCellRendererPixbuf @@ -12,6 +17,7 @@ Mon Apr 22 19:24:29 2002 Kristian Rietveld icon stuff in the cellrendererpixbuf instead of its own stock icon rendering code. + 2002-04-21 Alexander Larsson * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a62438cd4b..b2bfe328cc 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2002-04-22 Anders Carlsson + + * gtk/gtkentry.c (gtk_entry_drag_data_get): Use + gtk_entry_get_public_chars. Fixes #79532. + Mon Apr 22 19:24:29 2002 Kristian Rietveld This commit adds stock icon functionality to GtkCellRendererPixbuf @@ -12,6 +17,7 @@ Mon Apr 22 19:24:29 2002 Kristian Rietveld icon stuff in the cellrendererpixbuf instead of its own stock icon rendering code. + 2002-04-21 Alexander Larsson * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index a62438cd4b..b2bfe328cc 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2002-04-22 Anders Carlsson + + * gtk/gtkentry.c (gtk_entry_drag_data_get): Use + gtk_entry_get_public_chars. Fixes #79532. + Mon Apr 22 19:24:29 2002 Kristian Rietveld This commit adds stock icon functionality to GtkCellRendererPixbuf @@ -12,6 +17,7 @@ Mon Apr 22 19:24:29 2002 Kristian Rietveld icon stuff in the cellrendererpixbuf instead of its own stock icon rendering code. + 2002-04-21 Alexander Larsson * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a62438cd4b..b2bfe328cc 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2002-04-22 Anders Carlsson + + * gtk/gtkentry.c (gtk_entry_drag_data_get): Use + gtk_entry_get_public_chars. Fixes #79532. + Mon Apr 22 19:24:29 2002 Kristian Rietveld This commit adds stock icon functionality to GtkCellRendererPixbuf @@ -12,6 +17,7 @@ Mon Apr 22 19:24:29 2002 Kristian Rietveld icon stuff in the cellrendererpixbuf instead of its own stock icon rendering code. + 2002-04-21 Alexander Larsson * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a62438cd4b..b2bfe328cc 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2002-04-22 Anders Carlsson + + * gtk/gtkentry.c (gtk_entry_drag_data_get): Use + gtk_entry_get_public_chars. Fixes #79532. + Mon Apr 22 19:24:29 2002 Kristian Rietveld This commit adds stock icon functionality to GtkCellRendererPixbuf @@ -12,6 +17,7 @@ Mon Apr 22 19:24:29 2002 Kristian Rietveld icon stuff in the cellrendererpixbuf instead of its own stock icon rendering code. + 2002-04-21 Alexander Larsson * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a62438cd4b..b2bfe328cc 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2002-04-22 Anders Carlsson + + * gtk/gtkentry.c (gtk_entry_drag_data_get): Use + gtk_entry_get_public_chars. Fixes #79532. + Mon Apr 22 19:24:29 2002 Kristian Rietveld This commit adds stock icon functionality to GtkCellRendererPixbuf @@ -12,6 +17,7 @@ Mon Apr 22 19:24:29 2002 Kristian Rietveld icon stuff in the cellrendererpixbuf instead of its own stock icon rendering code. + 2002-04-21 Alexander Larsson * gdk/x11/gdkwindow-x11.c (gdk_window_reparent): diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 3e6534e88a..99f80152e9 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -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);