table-provider: Remove "const" from struct table_cell members.
[pspp] / src / output / table-item.h
index e4c40ab228c5ce959a90c828053cb70f24150528..d1c30b668d603df5b4f2b0be3eaa1074669fc022 100644 (file)
@@ -33,7 +33,7 @@
 struct table_item_text
   {
     char *content;
-    const struct footnote **footnotes;
+    struct footnote **footnotes;
     size_t n_footnotes;
     struct table_area_style *style;
   };
@@ -45,7 +45,7 @@ void table_item_text_destroy (struct table_item_text *);
 struct table_item_layer
   {
     char *content;
-    const struct footnote **footnotes;
+    struct footnote **footnotes;
     size_t n_footnotes;
   };