table-provider: Remove "const" from struct table_cell members.
[pspp] / src / output / table.h
index 85d063e8b6f730fda5e8957dfdeb9eec1da30385..a212aa4be2e3c7e09425911480daeb95d12648dd 100644 (file)
@@ -276,11 +276,9 @@ struct footnote *table_create_footnote (struct table *, size_t idx,
                                         const char *content,
                                         const char *marker,
                                         struct table_area_style *);
-void table_add_footnote (struct table *, int x, int y,
-                         const struct footnote *);
+void table_add_footnote (struct table *, int x, int y, struct footnote *);
 
-void table_add_style (struct table *, int x, int y,
-                      const struct table_area_style *);
+void table_add_style (struct table *, int x, int y, struct table_area_style *);
 
 bool table_cell_is_empty (const struct table *, int c, int r);