summaryrefslogtreecommitdiff
path: root/client/dconf-client.vala
diff options
context:
space:
mode:
Diffstat (limited to 'client/dconf-client.vala')
-rw-r--r--client/dconf-client.vala13
1 files changed, 0 insertions, 13 deletions
diff --git a/client/dconf-client.vala b/client/dconf-client.vala
index 8c011ae..472e544 100644
--- a/client/dconf-client.vala
+++ b/client/dconf-client.vala
@@ -342,17 +342,6 @@ namespace DConf {
return true;
}
- static Variant? service_func (EngineMessage dcem) {
- try {
- assert (dcem.bus_types[0] == 'e');
- var connection = Bus.get_sync (BusType.SESSION, null);
- return connection.call_sync (dcem.bus_name, dcem.object_path, dcem.interface_name, dcem.method_name,
- dcem.parameters[0], dcem.reply_type, DBusCallFlags.NONE, -1, null);
- } catch {
- return null;
- }
- }
-
/**
* dconf_client_new:
* @profile: the dconf profile to use, or %NULL
@@ -369,8 +358,6 @@ namespace DConf {
* ~/.config/dconf/user.
**/
public Client (string? profile = null, owned WatchFunc? watch_func = null) {
- Engine.set_service_func (service_func);
-
engine = new Engine (profile);
this.watch_func = watch_func;
}