summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2010-08-03 17:50:57 -0400
committerRyan Lortie <desrt@desrt.ca>2010-08-03 17:50:57 -0400
commit9dd9bcfc132980f0056f8bfc31669029d90860d9 (patch)
treec7382e3f8c8bc730d69e6c7a6d278f594c583548 /bin
parentded55e4e74c7e318c500eed826eeab4f54cfdff9 (diff)
downloaddconf-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 'bin')
-rw-r--r--bin/dconf.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dconf.vala b/bin/dconf.vala
index d052a11..c0c35bb 100644
--- a/bin/dconf.vala
+++ b/bin/dconf.vala
@@ -47,7 +47,7 @@ void do_write (DConf.Client client, string key, string val) throws Error {
void do_lock (DConf.Client client, string key, bool locked) throws Error {
DConf.verify_key (key);
- client.set_lock (key, locked);
+ client.set_locked (key, locked);
}
void do_watch (DConf.Client client, string name) throws Error {