mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-28 07:25:42 +00:00
ccad405077
* gtkhtml/Gtk.metadata: Patch from Mike Kestner: make GtkHTMLStream opaque, to fix a bug that was found by running Monodoc on MacOS X. We were passing a pointer to a managed object, instead of a pointer to a HTMLStream-allocated object. * HTMLStream.custom: Update custom file to reflect change to Opaque: use Handle instead of this. svn path=/trunk/gtk-sharp/; revision=26587
7 lines
155 B
Plaintext
7 lines
155 B
Plaintext
public void Write (string buffer)
|
|
{
|
|
byte [] bytes = System.Text.Encoding.UTF8.GetBytes (buffer);
|
|
|
|
gtk_html_stream_write (Handle, bytes, bytes.Length);
|
|
}
|