* gdk/PixbufLoader.custom: add Write () overload

[Fixes #62681]

svn path=/trunk/gtk-sharp/; revision=32802
This commit is contained in:
John Luke 2004-08-24 23:08:56 +00:00
parent 41e5ff0642
commit 1f363b9454
2 changed files with 10 additions and 0 deletions

View file

@ -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 <lewing@ximian.com>

View file

@ -26,3 +26,9 @@
return gdk_pixbuf_loader_get_pixbuf (Handle);
}
}
public bool Write (byte[] bytes)
{
return this.Write (bytes, (uint) bytes.Length);
}