# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1300598469 0 # Node ID 425f3d46b75f9d1737ae4294333a75c3d5999708 # Parent 5ec50e403a8aeef77b82f46710c494d66b8a1f7d Accidentally clobbered something in dw.h required for GTK 2.x. diff -r 5ec50e403a8a -r 425f3d46b75f dw.h --- a/dw.h Sun Mar 20 05:12:40 2011 +0000 +++ b/dw.h Sun Mar 20 05:21:09 2011 +0000 @@ -1256,7 +1256,12 @@ typedef struct _hpixmap { unsigned long width, height; +#if GTK_MAJOR_VERSION > 2 GdkPixbuf *pixbuf; /* the actual image */ +#else + GdkPixmap *pixmap; /* the actual image */ + GdkBitmap *bitmap; /* if not null, the image mask representing the transparency mask */ +#endif HWND handle; } *HPIXMAP;