Added callback for when the weights on a dictionary change.
[pspp-builds.git] / src / data / dictionary.h
index a1b17bb70c4724cf8043984e480462bca6b83d08..3b1ea56eef5392f90779591c8b551ce0f1ac9e3f 100644 (file)
@@ -32,6 +32,7 @@ struct dict_callbacks
   void (*var_added) (struct dictionary *, int, void *);
   void (*var_deleted) (struct dictionary *, int, void *);
   void (*var_changed) (struct dictionary *, int, void *);
+  void (*weight_changed) (struct dictionary *, int, void *);
  };