From 1f363b94546f902ee201b9fd9d36a9ee09072bc0 Mon Sep 17 00:00:00 2001 From: John Luke Date: Tue, 24 Aug 2004 23:08:56 +0000 Subject: [PATCH] * gdk/PixbufLoader.custom: add Write () overload [Fixes #62681] svn path=/trunk/gtk-sharp/; revision=32802 --- ChangeLog | 4 ++++ gdk/PixbufLoader.custom | 6 ++++++ 2 files changed, 10 insertions(+) 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); + } +