diff options
author | Evan Nemerson <evan@nemerson.com> | 2014-05-29 14:54:34 -0700 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2014-05-30 00:20:27 +0100 |
commit | e10266e3f3cf9b05b69198b1ac6faa9a62840e30 (patch) | |
tree | 997e3fd18b7445cbc561cac1b11219df7e62e0f9 /gst/gststructure.h | |
parent | 88191aa8800da205db510313638ae1be31a59667 (diff) |
docs: convert NULL, TRUE, and FALSE to %NULL, %TRUE, and %FALSE
This should help improve documentation generated for
languages other than C.
https://bugzilla.gnome.org/show_bug.cgi?id=730961
Diffstat (limited to 'gst/gststructure.h')
-rw-r--r-- | gst/gststructure.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/gststructure.h b/gst/gststructure.h index 684f5586d..6687970d8 100644 --- a/gst/gststructure.h +++ b/gst/gststructure.h @@ -47,8 +47,8 @@ typedef struct _GstStructure GstStructure; * A function that will be called in gst_structure_foreach(). The function may * not modify @value. * - * Returns: TRUE if the foreach operation should continue, FALSE if - * the foreach operation should stop with FALSE. + * Returns: %TRUE if the foreach operation should continue, %FALSE if + * the foreach operation should stop with %FALSE. */ typedef gboolean (*GstStructureForeachFunc) (GQuark field_id, const GValue * value, @@ -63,8 +63,8 @@ typedef gboolean (*GstStructureForeachFunc) (GQuark field_id, * A function that will be called in gst_structure_map_in_place(). The function * may modify @value. * - * Returns: TRUE if the map operation should continue, FALSE if - * the map operation should stop with FALSE. + * Returns: %TRUE if the map operation should continue, %FALSE if + * the map operation should stop with %FALSE. */ typedef gboolean (*GstStructureMapFunc) (GQuark field_id, GValue * value, |