Fix parsing of some more .tlo files.
[pspp] / src / output / table-item.h
index 24740f7eab625cedeecd2aa93416618c55705ae1..eb3dcb16ea440ba9db1da0eb15c44836941eaef3 100644 (file)
@@ -35,7 +35,7 @@ struct table_item_text
     char *content;
     const struct footnote **footnotes;
     size_t n_footnotes;
-    struct area_style *style;
+    struct table_area_style *style;
   };
 
 struct table_item_text *table_item_text_create (const char *);
@@ -57,7 +57,7 @@ struct table_item_layers
   {
     struct table_item_layer *layers;
     size_t n_layers;
-    struct area_style *style;
+    struct table_area_style *style;
   };
 
 struct table_item_layers *table_item_layers_clone (
@@ -75,6 +75,7 @@ struct table_item
     struct table_item_text *title;   /* Null if there is no title. */
     struct table_item_text *caption; /* Null if there is no caption. */
     struct table_item_layers *layers; /* Null if there is no layer info. */
+    struct pivot_table *pt;
   };
 
 struct table_item *table_item_create (struct table *, const char *title,