From 81c32f1c38df2e716aff211ac947fde62e2702a8 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Fri, 10 Dec 2004 23:03:33 +0000 Subject: [PATCH] 2004-12-09 Mike Kestner * gtkhtml/HTML.custom : remove obsolete attr for Write overload. * gtkhtml/HTMLStream.custom : ditto. svn path=/trunk/gtk-sharp/; revision=37606 --- ChangeLog | 5 +++++ doc/en/Gtk/HTML.xml | 2 +- doc/en/Gtk/HTMLStream.xml | 2 +- gtkhtml/HTML.custom | 1 - gtkhtml/HTMLStream.custom | 1 - 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 179990184..c9b306e35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-12-09 Mike Kestner + + * gtkhtml/HTML.custom : remove obsolete attr for Write overload. + * gtkhtml/HTMLStream.custom : ditto. + 2004-12-09 Mike Kestner * gtkhtml/HTML.custom : add an back-compat obsolete overload for Write. diff --git a/doc/en/Gtk/HTML.xml b/doc/en/Gtk/HTML.xml index fc55be382..0d78c9671 100644 --- a/doc/en/Gtk/HTML.xml +++ b/doc/en/Gtk/HTML.xml @@ -2100,7 +2100,7 @@ class X { a a a - This overload of this method is obsolete. Use the overload with ulong size for 64 bit safety. + Use the overload with ulong size for 64 bit deployments. diff --git a/doc/en/Gtk/HTMLStream.xml b/doc/en/Gtk/HTMLStream.xml index 7b764b549..c460614d3 100644 --- a/doc/en/Gtk/HTMLStream.xml +++ b/doc/en/Gtk/HTMLStream.xml @@ -174,7 +174,7 @@ Write the HTML to . a a - This overload is obsolete. Use the ulong size overload instead for 64 bit safety. + Use the ulong size overload instead for 64 bit deployments. diff --git a/gtkhtml/HTML.custom b/gtkhtml/HTML.custom index 14c63d3b2..2c3f97622 100644 --- a/gtkhtml/HTML.custom +++ b/gtkhtml/HTML.custom @@ -48,7 +48,6 @@ Raw = gtk_html_new_from_string(Astr, Astr.Length); } - [Obsolete ("Use the ulong overload instead.")] public void Write (HTMLStream handle, string buffer, int size) { Write (handle, buffer, (ulong) size); diff --git a/gtkhtml/HTMLStream.custom b/gtkhtml/HTMLStream.custom index 698d7e8db..cfd4f88d5 100644 --- a/gtkhtml/HTMLStream.custom +++ b/gtkhtml/HTMLStream.custom @@ -19,7 +19,6 @@ // Boston, MA 02111-1307, USA. -[Obsolete ("Use the ulong overload instead.")] public void Write (byte[] buffer, int size) { Write (buffer, (ulong) size);