summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-02-14 20:51:51 +0000
committerDarin Adler <darin@src.gnome.org>2000-02-14 20:51:51 +0000
commit97f2c2b7bb200e30733d1112277f1e9f5ad07de9 (patch)
treeb61f6078b76d4620b6d8446cee88a509be7d335c
parent9bf3a0be0cc3a41cf3f1f3d7f09692683dde22b3 (diff)
downloadgtk+-97f2c2b7bb200e30733d1112277f1e9f5ad07de9.tar.gz
Remove now-unnecessary cast.
-rw-r--r--demos/testpixbuf.c2
-rw-r--r--gdk-pixbuf/.cvsignore1
-rw-r--r--gdk-pixbuf/ChangeLog5
3 files changed, 7 insertions, 1 deletions
diff --git a/demos/testpixbuf.c b/demos/testpixbuf.c
index a5bc78774b..423d7d3308 100644
--- a/demos/testpixbuf.c
+++ b/demos/testpixbuf.c
@@ -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);
diff --git a/gdk-pixbuf/.cvsignore b/gdk-pixbuf/.cvsignore
index 6f2afc3601..e80ab794d8 100644
--- a/gdk-pixbuf/.cvsignore
+++ b/gdk-pixbuf/.cvsignore
@@ -9,3 +9,4 @@ testpixbuf
testpixbuf-drawable
testpixbuf-scale
testanimation
+gdk-pixbuf-features.h
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 38ee6d736c..04e4aaad68 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -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'.