table-item: Remove barely used parameters from table_item_create().
[pspp] / src / output / text-item.c
index 55319e9ef676c68c3ff5dedfcc319879f9f2f1d3..2f0cef5ee7f6cbfb7cc8989a50b66ccf4b9bcfe4 100644 (file)
@@ -185,7 +185,7 @@ text_item_to_table_item (struct text_item *text_item)
   if (text_item->type == TEXT_ITEM_SYNTAX || text_item->type == TEXT_ITEM_LOG)
     opts |= TAB_FIX;
   table_text (tab, 0, 0, opts, text_item_get_text (text_item));
-  struct table_item *table_item = table_item_create (tab, NULL, NULL, NULL);
+  struct table_item *table_item = table_item_create (tab);
   text_item_unref (text_item);
   return table_item;
 }