Remove now-unnecessary cast.

This commit is contained in:
Darin Adler 2000-02-14 20:51:51 +00:00
parent 9bf3a0be0c
commit 97f2c2b7bb
3 changed files with 7 additions and 1 deletions

View File

@ -529,7 +529,7 @@ main (int argc, char **argv)
if (argc == 1) {
const gchar*** xpmp;
pixbuf = gdk_pixbuf_new_from_data ((guchar *) default_image, ART_PIX_RGB, FALSE,
pixbuf = gdk_pixbuf_new_from_data (default_image, ART_PIX_RGB, FALSE,
DEFAULT_WIDTH, DEFAULT_HEIGHT, DEFAULT_WIDTH * 3,
NULL, NULL);
new_testrgb_window (pixbuf, NULL);

View File

@ -9,3 +9,4 @@ testpixbuf
testpixbuf-drawable
testpixbuf-scale
testanimation
gdk-pixbuf-features.h

View File

@ -1,3 +1,8 @@
2000-02-14 Darin Adler <darin@eazel.com>
* gdk-pixbuf/testpixbuf.c: Remove now-unnecessary cast.
* .cvsignore: gdk-pixbuf/.cvsignore: More to ignore.
2000-02-14 Elliot Lee <sopwith@redhat.com>
* gdk-pixbuf/gdk-pixbuf.h, gdk-pixbuf/gdk-pixbuf-data.c: Make passed-in argument 'const'.