output: Make groups contain their subitems, and get rid of spv_item.
[pspp] / src / output / cairo.c
index e5ac93bcf0635a63d5c0d094fd39dbc62f647cc1..81aeddc15f4094b4ed88511605323b3007f1bd54 100644 (file)
@@ -639,8 +639,8 @@ struct output_driver_factory png_driver_factory =
 
 static const struct output_driver_class cairo_driver_class =
 {
-  "cairo",
-  xr_destroy,
-  xr_submit,
-  NULL,
+  .name = "cairo",
+  .destroy = xr_destroy,
+  .submit = xr_submit,
+  .handles_groups = true,
 };