output: Make groups contain their subitems, and get rid of spv_item.
[pspp] / src / output / spv-driver.c
index f0c00e5fa84ad615bcd3828cc20817d528b56684..36db324ee79db9e1e4c6baa6a0cdf981179094ea 100644 (file)
@@ -100,8 +100,9 @@ struct output_driver_factory spv_driver_factory =
 
 static const struct output_driver_class spv_driver_class =
   {
-    "spv",
-    spv_destroy,
-    spv_submit,
-    NULL,
+    .name = "spv",
+    .destroy = spv_destroy,
+    .submit = spv_submit,
+    .handles_show = true,
+    .handles_groups = true,
   };