Merge lp:~laney/deja-dup/gsettings-settings-id-property into lp:deja-dup/32

Proposed by Iain Lane
Status: Merged
Merged at revision: 1540
Proposed branch: lp:~laney/deja-dup/gsettings-settings-id-property
Merge into: lp:deja-dup/32
Diff against target: 12 lines (+1/-1)
1 file modified
libdeja/FilteredSettings.vala (+1/-1)
To merge this branch: bzr merge lp:~laney/deja-dup/gsettings-settings-id-property
Reviewer Review Type Date Requested Status
Déjà Dup Developers Pending
Review via email: mp+227338@code.launchpad.net

Description of the change

glib removed the deprecated 'settings' property on GSettings with 2.41.2 that I just uploaded to Utopic. Looks like deja-dup was still using it.

  https://git.gnome.org/browse/glib/commit/?id=cf9b162e0d0defaff2ad5c85aeaf7af0899ad22f

If you like this branch, could you upload it to Utopic or let me know if I can?

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'libdeja/FilteredSettings.vala'
2--- libdeja/FilteredSettings.vala 2013-01-27 21:50:59 +0000
3+++ libdeja/FilteredSettings.vala 2014-07-18 14:23:52 +0000
4@@ -37,7 +37,7 @@
5
6 public FilteredSettings(string schema, bool ro)
7 {
8- Object(schema: schema, read_only: ro);
9+ Object(schema_id: schema, read_only: ro);
10 }
11
12 public new void apply() {if (!read_only) base.apply();}

Subscribers

People subscribed via source and target branches