diff options
Diffstat (limited to 'json-glib/json-object.c')
-rw-r--r-- | json-glib/json-object.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/json-glib/json-object.c b/json-glib/json-object.c index 5b1ec9e..4d89cd6 100644 --- a/json-glib/json-object.c +++ b/json-glib/json-object.c @@ -126,7 +126,7 @@ json_object_unref (JsonObject *object) * * If the @object is already immutable, this is a no-op. * - * Since: UNRELEASED + * Since: 1.2 */ void json_object_seal (JsonObject *object) @@ -157,7 +157,7 @@ json_object_seal (JsonObject *object) * Check whether the given @object has been marked as immutable by calling * json_object_seal() on it. * - * Since: UNRELEASED + * Since: 1.2 * Returns: %TRUE if the @object is immutable */ gboolean @@ -915,7 +915,7 @@ json_object_foreach_member (JsonObject *object, * proportionally with the number of members in the object. * * Returns: hash value for @key - * Since: UNRELEASED + * Since: 1.2 */ guint json_object_hash (gconstpointer key) @@ -950,7 +950,7 @@ json_object_hash (gconstpointer key) * set of members, and the values of corresponding members are equal. * * Returns: %TRUE if @a and @b are equal; %FALSE otherwise - * Since: UNRELEASED + * Since: 1.2 */ gboolean json_object_equal (gconstpointer a, @@ -1019,7 +1019,7 @@ json_object_equal (gconstpointer a, * } * ]| * - * Since: UNRELEASED + * Since: 1.2 */ void json_object_iter_init (JsonObjectIter *iter, @@ -1053,7 +1053,7 @@ json_object_iter_init (JsonObjectIter *iter, * Returns: %TRUE if @member_name and @member_node are valid; %FALSE if the end * of the object has been reached * - * Since: UNRELEASED + * Since: 1.2 */ gboolean json_object_iter_next (JsonObjectIter *iter, |