X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable-provider.h;h=1d21cdfd5c374a140270c4742a899f6187482cfc;hb=5d626fa11b736925983b615d4e3fba000a0ce75b;hp=2917051a13039c3f0d015bf4891bb6971b7eb5cf;hpb=01d6db8119ca4553d61841f2a9248712d4c6e0dc;p=pspp diff --git a/src/output/table-provider.h b/src/output/table-provider.h index 2917051a13..1d21cdfd5c 100644 --- a/src/output/table-provider.h +++ b/src/output/table-provider.h @@ -62,7 +62,7 @@ cell_color_equal (const struct cell_color *a, const struct cell_color *b) struct cell_style { - struct cell_color fg, bg; + struct cell_color fg[2], bg[2]; int margin[TABLE_N_AXES][2]; char *font; int font_size; @@ -71,8 +71,8 @@ struct cell_style #define CELL_STYLE_INITIALIZER \ { \ - .fg = CELL_COLOR_BLACK, \ - .bg = CELL_COLOR_WHITE, \ + .fg = { [0] = CELL_COLOR_BLACK, [1] = CELL_COLOR_BLACK}, \ + .bg = { [0] = CELL_COLOR_WHITE, [1] = CELL_COLOR_WHITE}, \ .margin = { [TABLE_HORZ][0] = 8, [TABLE_HORZ][1] = 11, \ [TABLE_VERT][0] = 1, [TABLE_VERT][1] = 1 }, \ .font = NULL, \