treewide: Use struct fmt_spec by value instead of pointer in most cases.
[pspp] / src / ui / gui / helper.h
index 69841a5c491d95b42a504e02d37d6ee54851012b..6a9605f0228e59b1e28e2dcfe47b88e6e9567ccb 100644 (file)
@@ -45,13 +45,12 @@ null_if_empty_param (const gchar *name, const gchar *nick,
 }
 
 gchar * value_to_text (union value v, const struct variable *);
-gchar * value_to_text__ (union value v, const struct fmt_spec *,
-                         const char *encoding);
+gchar * value_to_text__ (union value v, struct fmt_spec, const char *encoding);
 
 
 union value *text_to_value (const gchar *text, const struct variable *,
                             union value *);
-union value *text_to_value__ (const gchar *text, const struct fmt_spec *,
+union value *text_to_value__ (const gchar *text, struct fmt_spec,
                               const gchar *encoding, union value *);
 
 /* Create a deep copy of SRC */