output-item: Collapse the inheritance hierarchy into a single struct.
[pspp] / src / output / charts / scree.c
index 4de1f5e6fc664ecf888d9c47daa7f532542a5265..049087a47cb01dd9419dec2847f131f368dc6745 100644 (file)
@@ -18,7 +18,7 @@
 
 #include "output/charts/scree.h"
 
-#include "output/chart-item-provider.h"
+#include "output/chart-provider.h"
 
 #include "gl/xalloc.h"
 
@@ -29,7 +29,7 @@ struct scree *
 scree_create (const gsl_vector *eigenvalues, const char *xlabel)
 {
   struct scree *rc = xmalloc (sizeof *rc);
-  chart_item_init (&rc->chart_item, &scree_class, NULL);
+  chart_init (&rc->chart, &scree_class, NULL);
 
   rc->eval = gsl_vector_alloc (eigenvalues->size);
   gsl_vector_memcpy (rc->eval, eigenvalues);
@@ -40,16 +40,16 @@ scree_create (const gsl_vector *eigenvalues, const char *xlabel)
 }
 
 static void
-scree_destroy (struct chart_item *chart_item)
+scree_destroy (struct chart *chart)
 {
-  struct scree *rc = to_scree (chart_item);
+  struct scree *rc = to_scree (chart);
 
   gsl_vector_free (rc->eval);
   free (rc->xlabel);
   free (rc);
 }
 
-const struct chart_item_class scree_class =
+const struct chart_class scree_class =
   {
     scree_destroy
   };