# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1336252909 0 # Node ID 0b1be0a99f59ece27bbccf7744e24f7d0cef9272 # Parent fb6807b0ab0d0e45afa8798fcd1540d72aa48b0e Opps committed wrong version of _icon_resize() for GTK2. diff -r fb6807b0ab0d -r 0b1be0a99f59 gtk/dw.c --- a/gtk/dw.c Sat May 05 21:18:32 2012 +0000 +++ b/gtk/dw.c Sat May 05 21:21:49 2012 +0000 @@ -6963,8 +6963,8 @@ /* Internal function to keep HICNs from getting too big */ GdkPixbuf *_icon_resize(GdkPixbuf *ret) { - pwidth = gdk_pixbuf_get_width(ret); - pheight = gdk_pixbuf_get_height(ret); + int pwidth = gdk_pixbuf_get_width(ret); + int pheight = gdk_pixbuf_get_height(ret); if(pwidth > 24 || pheight > 24) {