diff options
author | Ryan Lortie <desrt@desrt.ca> | 2013-01-11 13:25:48 -0500 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2013-01-11 13:25:48 -0500 |
commit | 65b56f23658156174ba01976e3d3678700235a09 (patch) | |
tree | cf1d20ba04aac63d11a0a3937e9f36655f794811 /service/dconf-writer.c | |
parent | 80447f9ce0f61a4f150b0db99b7535ff5b033023 (diff) | |
download | dconf-65b56f23658156174ba01976e3d3678700235a09.tar.gz |
service: add a diff() operation on writers
This diffs the given changeset with the uncommited changes in the
writer. The result is effectively the changeset that would have to be
applied to the writer to cause it to be equal to the passed-in
changeset.
Diffstat (limited to 'service/dconf-writer.c')
-rw-r--r-- | service/dconf-writer.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/service/dconf-writer.c b/service/dconf-writer.c index 6df600a..a907b55 100644 --- a/service/dconf-writer.c +++ b/service/dconf-writer.c @@ -359,6 +359,13 @@ dconf_writer_set_basepath (DConfWriter *writer, writer->priv->native = FALSE; } +DConfChangeset * +dconf_writer_diff (DConfWriter *writer, + DConfChangeset *changeset) +{ + return dconf_changeset_diff (writer->priv->uncommited_values, changeset); +} + const gchar * dconf_writer_get_name (DConfWriter *writer) { |