* gdk/PixbufLoader.custom: add Write () overload
[Fixes #62681] svn path=/trunk/gtk-sharp/; revision=32802
This commit is contained in:
parent
41e5ff0642
commit
1f363b9454
2 changed files with 10 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -26,3 +26,9 @@
|
|||
return gdk_pixbuf_loader_get_pixbuf (Handle);
|
||||
}
|
||||
}
|
||||
|
||||
public bool Write (byte[] bytes)
|
||||
{
|
||||
return this.Write (bytes, (uint) bytes.Length);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue