1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-22 18:07:54 +02:00

Clarify documentation of GValueTransform

Note in documentation of GValueTransform that dest_value
is already initialized.

https://bugzilla.gnome.org/show_bug.cgi?id=632953
This commit is contained in:
Stef Walter
2010-10-23 03:50:12 +00:00
committed by Philip Withnall
parent 0f82ff12ea
commit 7641aedd5b

@@ -88,6 +88,8 @@ G_BEGIN_DECLS
* *
* The type of value transformation functions which can be registered with * The type of value transformation functions which can be registered with
* g_value_register_transform_func(). * g_value_register_transform_func().
*
* @dest_value will be initialized to the correct destination type.
*/ */
typedef void (*GValueTransform) (const GValue *src_value, typedef void (*GValueTransform) (const GValue *src_value,
GValue *dest_value); GValue *dest_value);