Update API

svn path=/trunk/gtk-sharp/; revision=11235
This commit is contained in:
Miguel de Icaza 2003-02-05 06:30:34 +00:00
parent 41e3e3bb9a
commit 66529e9602

View File

@ -1,4 +1,6 @@
public void Write (string buffer)
{
gtk_html_stream_write (ref this, buffer, buffer.Length);
byte [] bytes = System.Text.Encoding.UTF8.GetBytes (buffer);
gtk_html_stream_write (ref this, bytes, bytes.Length);
}