Commit 151c9124 authored by claes's avatar claes

Adapted to gcc 3.2

parent c43a9324
......@@ -135,9 +135,9 @@ void SubPaletteBrow::free_pixmaps()
#define ALLOC_PIXMAP( bitmap, idx) \
for ( i = 0; i < 9; i++) { \
pixmap_data[i].width = ## bitmap ## _width; \
pixmap_data[i].height = ## bitmap ## _height; \
pixmap_data[i].bits = (char *) ## bitmap ## _bits; \
pixmap_data[i].width = bitmap ## _width; \
pixmap_data[i].height = bitmap ## _height; \
pixmap_data[i].bits = (char *) bitmap ## _bits; \
} \
brow_AllocAnnotPixmap( ctx, &pixmap_data, &pixmaps[idx]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment