summaryrefslogtreecommitdiff
path: root/gconf/gconf-client.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@pobox.com>2000-09-09 18:42:43 +0000
committerHavoc Pennington <hp@src.gnome.org>2000-09-09 18:42:43 +0000
commit66d6febf5e1ab0e6b18553d8d023ee9bda76aeef (patch)
tree803ad2fa7ffdfd180ba7fb7f303de9a3c5fd9641 /gconf/gconf-client.h
parent09ce14ba906251f33302a3d5073ddbb8bfdb36b9 (diff)
downloadgconf-66d6febf5e1ab0e6b18553d8d023ee9bda76aeef.tar.gz
Move gconf-backend.h here, I don't see why it was in the public headers
2000-09-09 Havoc Pennington <hp@pobox.com> * gconf/Makefile.am (libgconf_1_la_SOURCES): Move gconf-backend.h here, I don't see why it was in the public headers Throughout, rename a bunch of stuff: #!/usr/bin/perl -pi.bak s/gconf_notify_add/gconf_engine_notify_add/g; s/gconf_notify_remove/gconf_engine_notify_remove/g; s/gconf_get_without_default/gconf_engine_get_without_default/g; s/gconf_get_full/gconf_engine_get_full/g; s/gconf_get_with_locale/gconf_engine_get_with_locale/g; s/gconf_get_default_from_schema/gconf_engine_get_default_from_schema/g; s/gconf_unset/gconf_engine_unset/g; s/gconf_associate_schema/gconf_engine_associate_schema/g; s/gconf_all_entries/gconf_engine_all_entries/g; s/gconf_all_dirs/gconf_engine_all_dirs/g; s/gconf_suggest_sync/gconf_engine_suggest_sync/g; s/gconf_dir_exists/gconf_engine_dir_exists/g; s/gconf_get_float/gconf_engine_get_float/g; s/gconf_get_int/gconf_engine_get_int/g; s/gconf_get_bool/gconf_engine_get_bool/g; s/gconf_get_schema/gconf_engine_get_schema/g; s/gconf_get_list/gconf_engine_get_list/g; s/gconf_get_pair/gconf_engine_get_pair/g; s/gconf_set_float/gconf_engine_set_float/g; s/gconf_set_int/gconf_engine_set_int/g; s/gconf_set_string/gconf_engine_set_string/g; s/gconf_set_bool/gconf_engine_set_bool/g; s/gconf_set_schema/gconf_engine_set_schema/g; s/gconf_set_list/gconf_engine_set_list/g; s/gconf_set_pair/gconf_engine_set_pair/g; s/gconf_commit_change_set/gconf_engine_commit_change_set/g; s/gconf_create_reverse_change_set/gconf_engine_reverse_change_set/g; s/gconf_create_change_set_from_currentv/gconf_engine_change_set_from_currentv/g; s/gconf_create_change_set_from_current/gconf_engine_change_set_from_current/g; s/gconf_schema_destroy/gconf_schema_free/g; s/gconf_value_destroy/gconf_value_free/g; s/gconf_listeners_destroy/gconf_listeners_free/g; s/gconf_entry_destroy/gconf_entry_free/g; s/gconf_client_create_change_set_from_current/gconf_client_change_set_from_current/g; s/gconf_client_create_change_set_from_currentv/gconf_client_change_set_from_currentv/g; s/gconf_client_create_reverse_change_set/gconf_client_reverse_change_set/g; ## These require some care, since they can be the prefix for unrelated stuff. s/gconf_get /gconf_engine_get /g; s/gconf_set /gconf_engine_set /g; s/gconf_get\(/gconf_engine_get (/g; s/gconf_set\(/gconf_engine_set (/g;
Diffstat (limited to 'gconf/gconf-client.h')
-rw-r--r--gconf/gconf-client.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gconf/gconf-client.h b/gconf/gconf-client.h
index 809a2447..2b527928 100644
--- a/gconf/gconf-client.h
+++ b/gconf/gconf-client.h
@@ -41,7 +41,7 @@ extern "C" {
*
* - It allows you to register per-key callbacks within these directories,
* without having to register multiple server-side callbacks
- * (gconf_notify_add() adds a request-for-notify to the server,
+ * (gconf_engine_notify_add() adds a request-for-notify to the server,
* this wrapper adds a notify to the server for the whole directory
* and keeps your per-key notify requests on the client side).
*
@@ -362,15 +362,15 @@ gboolean gconf_client_commit_change_set (GConfClient* client,
/* Create a change set that would revert the given change set
for the given GConfClient */
-GConfChangeSet* gconf_client_create_reverse_change_set (GConfClient* client,
+GConfChangeSet* gconf_client_reverse_change_set (GConfClient* client,
GConfChangeSet* cs,
GError** err);
-GConfChangeSet* gconf_client_create_change_set_from_currentv (GConfClient* client,
+GConfChangeSet* gconf_client_change_set_from_currentv (GConfClient* client,
const gchar** keys,
GError** err);
-GConfChangeSet* gconf_client_create_change_set_from_current (GConfClient* client,
+GConfChangeSet* gconf_client_change_set_from_current (GConfClient* client,
GError** err,
const gchar* first_key,
...);