diff options
author | Ryan Lortie <desrt@desrt.ca> | 2010-08-03 17:50:57 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2010-08-03 17:50:57 -0400 |
commit | 9dd9bcfc132980f0056f8bfc31669029d90860d9 (patch) | |
tree | c7382e3f8c8bc730d69e6c7a6d278f594c583548 /common/dconf-paths.c | |
parent | ded55e4e74c7e318c500eed826eeab4f54cfdff9 (diff) | |
download | dconf-9dd9bcfc132980f0056f8bfc31669029d90860d9.tar.gz |
set_lock -> set_locked and cleanup gtk-doc
Rename set_lock to set_locked again (and same SetLock -> SetLocked).
Add missing gtk-doc bits, clean up some that are no longer there.
Bump gtk-doc dependency.
Diffstat (limited to 'common/dconf-paths.c')
-rw-r--r-- | common/dconf-paths.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/dconf-paths.c b/common/dconf-paths.c index f31bab3..8a63704 100644 --- a/common/dconf-paths.c +++ b/common/dconf-paths.c @@ -83,6 +83,7 @@ /** * dconf_is_path: * @string: a string + * @error: a pointer to a #GError, or %NULL, set when %FALSE is returned * Returns: %TRUE if @string is a path * * Checks if @string is a valid dconf path. dconf keys must start with @@ -103,6 +104,7 @@ dconf_is_path (const gchar *string, /** * dconf_is_key: * @string: a string + * @error: a pointer to a #GError, or %NULL, set when %FALSE is returned * Returns: %TRUE if @string is a key * * Checks if @string is a valid dconf key. dconf keys must start with @@ -127,6 +129,7 @@ dconf_is_key (const gchar *string, /** * dconf_is_dir: * @string: a string + * @error: a pointer to a #GError, or %NULL, set when %FALSE is returned * Returns: %TRUE if @string is a dir * * Checks if @string is a valid dconf dir. dconf dirs must start and @@ -152,6 +155,7 @@ dconf_is_dir (const gchar *string, /** * dconf_is_rel: * @string: a string + * @error: a pointer to a #GError, or %NULL, set when %FALSE is returned * Returns: %TRUE if @string is a relative path * * Checks if @string is a valid dconf relative path. A relative path is @@ -174,6 +178,7 @@ dconf_is_rel (const gchar *string, /** * dconf_is_rel_key: * @string: a string + * @error: a pointer to a #GError, or %NULL, set when %FALSE is returned * Returns: %TRUE if @string is a relative key * * Checks if @string is a valid dconf relative key. A relative key is a @@ -197,6 +202,7 @@ dconf_is_rel_key (const gchar *string, /** * dconf_is_rel_dir: * @string: a string + * @error: a pointer to a #GError, or %NULL, set when %FALSE is returned * Returns: %TRUE if @string is a relative dir * * Checks if @string is a valid dconf relative dir. A relative dir is a |