diff options
author | Ryan Lortie <desrt@desrt.ca> | 2011-09-11 15:09:52 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-09-11 15:09:52 -0400 |
commit | 44d56d869d2236ef1d177bd1ab33d65ae23d7e2e (patch) | |
tree | e4e56f05c6238dc29af96a02cab6b3e1cd4b41eb /engine/dconf-engine.h | |
parent | 3ecf9aab99ff201ba66e7d7f6e79accbd6797660 (diff) | |
download | dconf-44d56d869d2236ef1d177bd1ab33d65ae23d7e2e.tar.gz |
Remove "service func" logic
This was required to support the case where the dconf client was unable
to determine the cache directory for itself. Since we now use the XDG
runtime directory, this is redundant.
Diffstat (limited to 'engine/dconf-engine.h')
-rw-r--r-- | engine/dconf-engine.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/engine/dconf-engine.h b/engine/dconf-engine.h index 98333fb..75c0474 100644 --- a/engine/dconf-engine.h +++ b/engine/dconf-engine.h @@ -69,7 +69,6 @@ typedef struct const GVariantType *reply_type; } DConfEngineMessage; -typedef GVariant * (*DConfEngineServiceFunc) (DConfEngineMessage *message); G_GNUC_INTERNAL void dconf_engine_message_copy (DConfEngineMessage *orig, DConfEngineMessage *copy); @@ -77,12 +76,9 @@ G_GNUC_INTERNAL void dconf_engine_message_destroy (DConfEngineMessage *message); G_GNUC_INTERNAL -void dconf_engine_set_service_func (DConfEngineServiceFunc func); -G_GNUC_INTERNAL DConfEngine * dconf_engine_new (const gchar *profile); G_GNUC_INTERNAL -DConfEngine * dconf_engine_new_for_db (DConfEngineServiceFunc *service, - const gchar *db_name); +DConfEngine * dconf_engine_new_for_db (const gchar *db_name); G_GNUC_INTERNAL guint64 dconf_engine_get_state (DConfEngine *engine); |