X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftext-item.c;h=ba0f3873adb0071f2dc996f62b3846d2117ccf02;hb=56e6166660c0f1388cad4cb4d3189e026bc84dd5;hp=20b424732b605af3093b9d80ec62ff4674248d95;hpb=ada0a9f1d1ed94079e90fd2f0fe673ccddccceae;p=pspp diff --git a/src/output/text-item.c b/src/output/text-item.c index 20b424732b..ba0f3873ad 100644 --- a/src/output/text-item.c +++ b/src/output/text-item.c @@ -25,7 +25,7 @@ #include "libpspp/pool.h" #include "output/driver.h" #include "output/output-item-provider.h" -#include "output/tab.h" +#include "output/table.h" #include "output/table-item.h" #include "output/table-provider.h" @@ -119,7 +119,7 @@ text_item_submit (struct text_item *item) struct table_item * text_item_to_table_item (struct text_item *text_item) { - struct tab_table *tab = tab_create (1, 1, 0, 0, 0, 0); + struct table *tab = table_create (1, 1, 0, 0, 0, 0); struct area_style *style = pool_alloc (tab->container, sizeof *style); *style = (struct area_style) { AREA_STYLE_INITIALIZER__, @@ -139,8 +139,8 @@ text_item_to_table_item (struct text_item *text_item) opts |= TAB_MARKUP; if (text_item->type == TEXT_ITEM_SYNTAX || text_item->type == TEXT_ITEM_LOG) opts |= TAB_FIX; - tab_text (tab, 0, 0, opts, text_item_get_text (text_item)); - struct table_item *table_item = table_item_create (&tab->table, NULL, NULL); + table_text (tab, 0, 0, opts, text_item_get_text (text_item)); + struct table_item *table_item = table_item_create (tab, NULL, NULL); text_item_unref (text_item); return table_item; }