Merge lp:~pimvullers/euclide/fix-1001307 into lp:euclide

Proposed by Pim Vullers
Status: Merged
Merged at revision: 110
Proposed branch: lp:~pimvullers/euclide/fix-1001307
Merge into: lp:euclide
Diff against target: 142 lines (+49/-49)
4 files modified
CMakeLists.txt (+1/-1)
org.gnome.euclide.gschema.xml (+0/-45)
org.pantheon.euclide.gschema.xml (+45/-0)
src/main.vala (+3/-3)
To merge this branch: bzr merge lp:~pimvullers/euclide/fix-1001307
Reviewer Review Type Date Requested Status
Euclide Developers Pending
Review via email: mp+106417@code.launchpad.net

Description of the change

This branch fixes bug #1001307

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 'CMakeLists.txt'
2--- CMakeLists.txt 2012-03-08 08:36:10 +0000
3+++ CMakeLists.txt 2012-05-18 15:44:19 +0000
4@@ -16,7 +16,7 @@
5
6 # GSettings Schema
7 include (GSettings)
8-add_schema ("org.gnome.euclide.gschema.xml")
9+add_schema ("org.pantheon.euclide.gschema.xml")
10
11 # Process subdirectories
12 add_subdirectory(euclidecore)
13
14=== removed file 'org.gnome.euclide.gschema.xml'
15--- org.gnome.euclide.gschema.xml 2012-02-18 12:04:31 +0000
16+++ org.gnome.euclide.gschema.xml 1970-01-01 00:00:00 +0000
17@@ -1,45 +0,0 @@
18-<schemalist>
19- <schema path="/apps/euclide/settings/" id="org.gnome.euclide.settings" gettext-domain="euclide">
20- <key type="as" name="plugins-enabled">
21- <default>[]</default>
22- <summary>Enabled Plugins</summary>
23- <description>Enabled Plugins</description>
24- </key>
25- <key type="s" name="recent-1">
26- <default>''</default>
27- <summary>Recent file</summary>
28- </key>
29- <key type="s" name="recent-2">
30- <default>''</default>
31- <summary>Recent file</summary>
32- </key>
33- <key type="s" name="recent-3">
34- <default>''</default>
35- <summary>Recent file</summary>
36- </key>
37- <key type="s" name="recent-4">
38- <default>''</default>
39- <summary>Recent file</summary>
40- </key>
41- <key type="s" name="recent-5">
42- <default>''</default>
43- <summary>Recent file</summary>
44- </key>
45- <key type="i" name="geometry-w">
46- <default>600</default>
47- <summary>Recent file</summary>
48- </key>
49- <key type="i" name="geometry-h">
50- <default>600</default>
51- <summary>Recent file</summary>
52- </key>
53- <key type="i" name="tabs-width">
54- <default>4</default>
55- <summary>Tabs width</summary>
56- </key>
57- <key type="b" name="make-ctest">
58- <default>true</default>
59- <summary>Use make check instead of ctest for the unit tests</summary>
60- </key>
61- </schema>
62-</schemalist>
63
64=== added file 'org.pantheon.euclide.gschema.xml'
65--- org.pantheon.euclide.gschema.xml 1970-01-01 00:00:00 +0000
66+++ org.pantheon.euclide.gschema.xml 2012-05-18 15:44:19 +0000
67@@ -0,0 +1,45 @@
68+<schemalist>
69+ <schema path="/org/pantheon/euclide/settings/" id="org.pantheon.euclide.settings" gettext-domain="euclide">
70+ <key type="as" name="plugins-enabled">
71+ <default>[]</default>
72+ <summary>Enabled Plugins</summary>
73+ <description>Enabled Plugins</description>
74+ </key>
75+ <key type="s" name="recent-1">
76+ <default>''</default>
77+ <summary>Recent file</summary>
78+ </key>
79+ <key type="s" name="recent-2">
80+ <default>''</default>
81+ <summary>Recent file</summary>
82+ </key>
83+ <key type="s" name="recent-3">
84+ <default>''</default>
85+ <summary>Recent file</summary>
86+ </key>
87+ <key type="s" name="recent-4">
88+ <default>''</default>
89+ <summary>Recent file</summary>
90+ </key>
91+ <key type="s" name="recent-5">
92+ <default>''</default>
93+ <summary>Recent file</summary>
94+ </key>
95+ <key type="i" name="geometry-w">
96+ <default>600</default>
97+ <summary>Recent file</summary>
98+ </key>
99+ <key type="i" name="geometry-h">
100+ <default>600</default>
101+ <summary>Recent file</summary>
102+ </key>
103+ <key type="i" name="tabs-width">
104+ <default>4</default>
105+ <summary>Tabs width</summary>
106+ </key>
107+ <key type="b" name="make-ctest">
108+ <default>true</default>
109+ <summary>Use make check instead of ctest for the unit tests</summary>
110+ </key>
111+ </schema>
112+</schemalist>
113
114=== modified file 'src/main.vala'
115--- src/main.vala 2012-02-23 20:36:56 +0000
116+++ src/main.vala 2012-05-18 15:44:19 +0000
117@@ -445,7 +445,7 @@
118
119 /* Init stuff */
120
121- euclide_settings = new Settings("org.gnome.euclide.settings");
122+ euclide_settings = new Settings("org.pantheon.euclide.settings");
123 main_actions = new Gtk.ActionGroup("MainActionGroup"); /* Actions and UIManager */
124 main_actions.set_translation_domain("euclide");
125 main_actions.add_actions(main_entries, this);
126@@ -542,7 +542,7 @@
127
128 void on_show_popover()
129 {
130- build_arrow.set_state(true);
131+ build_arrow.set_state(Gtk.StateType.NORMAL);
132 var build_popover = new Granite.Widgets.PopOver();
133 build_popover.move_to_widget(build_arrow);
134 var box = build_popover.get_content_area() as Gtk.Box;
135@@ -559,7 +559,7 @@
136 build_popover.run();
137 cmake.arguments = arguments.text;
138 build_popover.destroy();
139- build_arrow.set_state(false);
140+ build_arrow.set_state(Gtk.StateType.INSENSITIVE);
141
142 }
143

Subscribers

People subscribed via source and target branches