X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable-provider.h;h=ab39b4b25c5fc7d1e848726a98b1e457ca0feda2;hb=e6bb779b866f297b736a7f93a0c8aa741131726f;hp=14c3656e4a2958b02c5dcf27e03138919f4a312a;hpb=d523d6fa44e79bbca2b2cce792a7f25cca0d3aef;p=pspp diff --git a/src/output/table-provider.h b/src/output/table-provider.h index 14c3656e4a..ab39b4b25c 100644 --- a/src/output/table-provider.h +++ b/src/output/table-provider.h @@ -50,8 +50,8 @@ struct cell_style { struct cell_color fg[2], bg[2]; int margin[TABLE_N_AXES][2]; - char *font; - int font_size; + char *typeface; + int size; bool bold, italic, underline; }; @@ -61,8 +61,8 @@ struct cell_style .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, \ - .font_size = 0, \ + .typeface = NULL, \ + .size = 0, \ .bold = false, \ .italic = false, \ .underline = false, \