message-item: Fix reference counting in message_item_to_text_item().
[pspp] / src / output / table-provider.h
index d961d43e10184058ff0124b8aecdf2b9df0af667..be45912d92148994b3484404cdb8d3e626497a58 100644 (file)
@@ -30,7 +30,7 @@ struct footnote
     size_t idx;
     char *content;
     char *marker;
-    struct area_style *style;
+    struct table_area_style *style;
   };
 
 /* A cell in a table. */
@@ -55,12 +55,12 @@ struct table_cell
 
     unsigned int options;       /* TAB_*. */
     char *text;                 /* A paragraph of text. */
-
-    /* Optional footnote(s). */
+    char **subscripts;
+    size_t n_subscripts;
+    char *superscript;
     const struct footnote **footnotes;
     size_t n_footnotes;
-
-    const struct area_style *style;
+    const struct table_area_style *style;
   };
 
 void table_cell_format_footnote_markers (const struct table_cell *,