html: Pop up tooltip with table notes in output.
[pspp] / src / output / text-item.c
index 95bb7723c84147043a2e429489f29f8ca50d1626..8c7f0dc51a67afe97ebdd1f09d2c9424e0673454 100644 (file)
@@ -137,7 +137,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);
+  struct table_item *table_item = table_item_create (tab, NULL, NULL, NULL);
   text_item_unref (text_item);
   return table_item;
 }