diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index a919e8eb0a..aa847441ec 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2007-01-08 Matthias Clasen + + * gtk/tmpl/gtkentry.sgml: Expand deprecation notes for + gtk_entry_append/prepend_text. (#394034, Micah Carrick) + 2007-01-07 Matthias Clasen * gdk-pixbuf/gdk-pixbuf-sections.txt: Correct the include diff --git a/docs/reference/gtk/tmpl/gtkentry.sgml b/docs/reference/gtk/tmpl/gtkentry.sgml index 5f959d8f9d..dd505f66c1 100644 --- a/docs/reference/gtk/tmpl/gtkentry.sgml +++ b/docs/reference/gtk/tmpl/gtkentry.sgml @@ -223,15 +223,22 @@ Appends the given text to the contents of the widget. @entry: a #GtkEntry. @text: the text to append. +@Deprecated: gtk_entry_append_text() is deprecated and should not + be used in newly-written code. Use gtk_editable_insert_text() + instead. -Prepends the given text to the contents of th ewidget. +Prepends the given text to the contents of the widget. @entry: a #GtkEntry. @text: the text to prepend. +@Deprecated: gtk_entry_prepend_text() is deprecated and should not + be used in newly-written code. Use gtk_editable_insert_text() + instead. +