diff --git a/ChangeLog b/ChangeLog index 4bfee36c6..9a3ef7668 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,10 @@ * rsvg/Makefile.am: add Pixbuf.custom to build * rsvg/Tool.cs: remove double ; that cause warnings * rsvg/rsvg-sharp.pc.in: add Requires: gtk-sharp art-sharp + [Fixes #60894] + * gdk/PixbufLoader.custom: add Write () overload + [Fixes #62681] + 2004-08-24 Larry Ewing diff --git a/gdk/PixbufLoader.custom b/gdk/PixbufLoader.custom index c5ffb3422..3b0b04039 100644 --- a/gdk/PixbufLoader.custom +++ b/gdk/PixbufLoader.custom @@ -26,3 +26,9 @@ return gdk_pixbuf_loader_get_pixbuf (Handle); } } + + public bool Write (byte[] bytes) + { + return this.Write (bytes, (uint) bytes.Length); + } +