# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1045643280 0 # Node ID bdaaa06285fdb3c0ecfac19275eaef414d97bfed # Parent 11baf43efbc2ca15daa77aff4b28a2fb1346d849 Missing parameter to gdk_pixmap_new_from_file() for GTK 2.0. diff -r 11baf43efbc2 -r bdaaa06285fd gtk/dw.c --- 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);