# HG changeset patch # User mhessling@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1304920689 0 # Node ID cb81c08bd8c3d25ad13089e846c49b815cd7b5b4 # Parent 08b7e8d7cbb3dcee645f2c578fc5167fd131bd42 Correct OS/2 question mark pointer #define; should be SPTR_ICONQUESTION despite some online documentation indicating it is SPTR_ICONQUESICON diff -r 08b7e8d7cbb3 -r cb81c08bd8c3 dw.h --- a/dw.h Sun May 08 06:30:21 2011 +0000 +++ b/dw.h Mon May 09 05:58:09 2011 +0000 @@ -163,7 +163,7 @@ #define DW_POINTER_DEFAULT 0 #define DW_POINTER_ARROW SPTR_ARROW #define DW_POINTER_CLOCK SPTR_WAIT -#define DW_POINTER_QUESTION SPTR_ICONQUESICON +#define DW_POINTER_QUESTION SPTR_ICONQUESTION #define DW_BS_NOBORDER BS_NOBORDER @@ -379,6 +379,7 @@ #define DW_POINTER_DEFAULT 0 #define DW_POINTER_ARROW 1 #define DW_POINTER_CLOCK 2 +#define DW_POINTER_QUESTION 3 #define HWND_DESKTOP ((HWND)0) @@ -1262,8 +1263,8 @@ GdkPixbuf *pixbuf; /* the actual image */ cairo_surface_t *image; /* Going to have dual storage for now */ #else - GdkPixmap *pixmap; /* the actual image */ - GdkBitmap *bitmap; /* if not null, the image mask representing the transparency mask */ + GdkPixmap *pixmap; /* the actual image */ + GdkBitmap *bitmap; /* if not null, the image mask representing the transparency mask */ #endif HWND handle; } *HPIXMAP;