changeset 246:bdaaa06285fd

Missing parameter to gdk_pixmap_new_from_file() for GTK 2.0.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 19 Feb 2003 08:28:00 +0000
parents 11baf43efbc2
children c097ffe6cfeb
files gtk/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gtk/dw.c	Wed Feb 19 08:00:50 2003 +0000
+++ b/gtk/dw.c	Wed Feb 19 08:28:00 2003 +0000
@@ -5091,7 +5091,7 @@
 
 	DW_MUTEX_LOCK;
 #if GTK_MAJOR_VERSION > 1
-	pixbuf = gdk_pixbuf_new_from_file(file);
+	pixbuf = gdk_pixbuf_new_from_file(file, NULL);
 
 	pixmap->width = gdk_pixbuf_get_width(pixbuf);
 	pixmap->height = gdk_pixbuf_get_height(pixbuf);