Merge lp:~pimvullers/snap-elementary/fix-983560 into lp:snap-elementary

Proposed by Pim Vullers
Status: Merged
Merged at revision: 47
Proposed branch: lp:~pimvullers/snap-elementary/fix-983560
Merge into: lp:snap-elementary
Diff against target: 60 lines (+16/-16)
4 files modified
CMakeLists.txt (+1/-1)
org.elementary.snap.gschema.xml (+0/-14)
org.pantheon.snap.gschema.xml (+14/-0)
src/Services/Settings.vala (+1/-1)
To merge this branch: bzr merge lp:~pimvullers/snap-elementary/fix-983560
Reviewer Review Type Date Requested Status
Cody Garver (community) Approve
Review via email: mp+106403@code.launchpad.net

Description of the change

This branch fixes bug #983560

To post a comment you must log in.
Revision history for this message
Cody Garver (codygarver) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2012-03-25 10:42:47 +0000
3+++ CMakeLists.txt 2012-05-18 15:21:17 +0000
4@@ -73,4 +73,4 @@
5 install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/data/icons/ DESTINATION share/icons/)
6 install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/snap.desktop DESTINATION share/applications)
7 include(GSettings)
8-add_schema("org.elementary.snap.gschema.xml")
9+add_schema("org.pantheon.snap.gschema.xml")
10
11=== removed file 'org.elementary.snap.gschema.xml'
12--- org.elementary.snap.gschema.xml 2012-02-25 15:31:23 +0000
13+++ org.elementary.snap.gschema.xml 1970-01-01 00:00:00 +0000
14@@ -1,14 +0,0 @@
15-<schemalist>
16- <schema path="/apps/snap/settings/" id="org.elementary.Snap.Settings" gettext-domain="snap">
17- <key name="countdown-time" type="i">
18- <default>5</default>
19- <summary>The time for the countdown.</summary>
20- <description>The time for the countdown.</description>
21- </key>
22- <key name="countdown" type="b">
23- <default>true</default>
24- <summary>Use or not the countdown.</summary>
25- <description>Use or not the countdown.</description>
26- </key>
27- </schema>
28-</schemalist>
29
30=== added file 'org.pantheon.snap.gschema.xml'
31--- org.pantheon.snap.gschema.xml 1970-01-01 00:00:00 +0000
32+++ org.pantheon.snap.gschema.xml 2012-05-18 15:21:17 +0000
33@@ -0,0 +1,14 @@
34+<schemalist>
35+ <schema path="/org/pantheon/snap/settings/" id="org.pantheon.snap.settings" gettext-domain="snap">
36+ <key name="countdown-time" type="i">
37+ <default>5</default>
38+ <summary>The time for the countdown.</summary>
39+ <description>The time for the countdown.</description>
40+ </key>
41+ <key name="countdown" type="b">
42+ <default>true</default>
43+ <summary>Use or not the countdown.</summary>
44+ <description>Use or not the countdown.</description>
45+ </key>
46+ </schema>
47+</schemalist>
48
49=== modified file 'src/Services/Settings.vala'
50--- src/Services/Settings.vala 2012-02-25 15:31:23 +0000
51+++ src/Services/Settings.vala 2012-05-18 15:21:17 +0000
52@@ -27,7 +27,7 @@
53 public int countdown_time { get; set; }
54
55 public Settings () {
56- base ("org.elementary.Snap.Settings");
57+ base ("org.pantheon.snap.settings");
58 }
59
60 }

Subscribers

People subscribed via source and target branches