X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable-item.c;h=e24d59b37a15858c736aaeae0b975a2e947d3dd2;hb=a7a300e7d9963ce9a26fd87e4db922ed74111731;hp=1308cb86503cddd887354bbdac1d13c9c6798555;hpb=e6bb779b866f297b736a7f93a0c8aa741131726f;p=pspp diff --git a/src/output/table-item.c b/src/output/table-item.c index 1308cb8650..e24d59b37a 100644 --- a/src/output/table-item.c +++ b/src/output/table-item.c @@ -35,8 +35,7 @@ table_item_text_create (const char *content) return NULL; struct table_item_text *text = xmalloc (sizeof *text); - *text = (struct table_item_text) { .content = xstrdup (content), - .halign = TAB_LEFT }; + *text = (struct table_item_text) { .content = xstrdup (content) }; return text; } @@ -52,8 +51,7 @@ table_item_text_clone (const struct table_item_text *old) .footnotes = xmemdup (old->footnotes, old->n_footnotes * sizeof *old->footnotes), .n_footnotes = old->n_footnotes, - .style = cell_style_clone (NULL, old->style), - .halign = old->halign, + .style = area_style_clone (NULL, old->style), }; return new; } @@ -65,7 +63,7 @@ table_item_text_destroy (struct table_item_text *text) { free (text->content); free (text->footnotes); - cell_style_free (text->style); + area_style_free (text->style); free (text); } }