Merge lp:~elementary-apps/granite/valadoc-fixes into lp:~elementary-pantheon/granite/granite

Proposed by Tom Beckmann
Status: Merged
Approved by: Corentin Noël
Approved revision: 784
Merged at revision: 814
Proposed branch: lp:~elementary-apps/granite/valadoc-fixes
Merge into: lp:~elementary-pantheon/granite/granite
Diff against target: 1832 lines (+743/-737)
40 files modified
lib/Application.vala (+18/-18)
lib/CMakeLists.txt (+7/-1)
lib/Drawing/BufferSurface.vala (+19/-19)
lib/Drawing/Color.vala (+18/-18)
lib/Drawing/Utilities.vala (+19/-19)
lib/Services/Contractor.vala (+18/-18)
lib/Services/ContractorProxy.vala (+20/-20)
lib/Services/IconFactory.vala (+19/-19)
lib/Services/Logger.vala (+18/-18)
lib/Services/Paths.vala (+19/-19)
lib/Services/Settings.vala (+19/-19)
lib/Services/SimpleCommand.vala (+18/-18)
lib/Services/System.vala (+18/-18)
lib/Widgets/AboutDialog.vala (+18/-18)
lib/Widgets/AppMenu.vala (+18/-18)
lib/Widgets/CellRendererBadge.vala (+19/-19)
lib/Widgets/CellRendererExpander.vala (+18/-18)
lib/Widgets/CollapsiblePaned.vala (+18/-18)
lib/Widgets/CompositedWindow.vala (+18/-18)
lib/Widgets/ContractorMenu.vala (+18/-18)
lib/Widgets/ContractorView.vala (+18/-18)
lib/Widgets/DatePicker.vala (+19/-19)
lib/Widgets/DecoratedWindow.vala (+20/-20)
lib/Widgets/DynamicNotebook.vala (+18/-18)
lib/Widgets/Entries.vala (+21/-21)
lib/Widgets/LightWindow.vala (+20/-20)
lib/Widgets/ModeButton.vala (+21/-21)
lib/Widgets/OverlayBar.vala (+19/-19)
lib/Widgets/PopOver.vala (+19/-19)
lib/Widgets/SidebarPaned.vala (+20/-20)
lib/Widgets/SourceList.vala (+18/-18)
lib/Widgets/StaticNotebook.vala (+18/-18)
lib/Widgets/StatusBar.vala (+20/-20)
lib/Widgets/ThinPaned.vala (+18/-18)
lib/Widgets/TimePicker.vala (+19/-19)
lib/Widgets/ToolButtonWithMenu.vala (+21/-21)
lib/Widgets/Utils.vala (+19/-19)
lib/Widgets/Welcome.vala (+20/-20)
lib/Widgets/WrapLabel.vala (+20/-20)
lib/style-classes.vala (+18/-18)
To merge this branch: bzr merge lp:~elementary-apps/granite/valadoc-fixes
Reviewer Review Type Date Requested Status
Corentin Noël Approve
PerfectCarl (community) Approve
Review via email: mp+233350@code.launchpad.net

Commit message

Adapt to standard style for copyright headers, add VAPI_COMMENTS option to cmake

Description of the change

This branch changes the copyright headers to the standard form used by for example vala itself, which allows valac to generate vapis with comments without confusing copyright headers as namespace/class comments. The branch also adds a VAPI_COMMENTS option to cmake, which will enable the valac option for adding comments to the vapi file. The option is only available for vala from git master right now, thus disabled by default.

To post a comment you must log in.
Revision history for this message
PerfectCarl (name-is-carl) wrote :

--vapi-comments has landed in valac 0.26.1

review: Approve
Revision history for this message
Corentin Noël (tintou) wrote :

No controversial changes here.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/Application.vala'
2--- lib/Application.vala 2014-08-05 15:04:49 +0000
3+++ lib/Application.vala 2014-09-04 12:42:01 +0000
4@@ -1,21 +1,21 @@
5-/***
6- Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>
7-
8- This program or library is free software; you can redistribute it
9- and/or modify it under the terms of the GNU Lesser General Public
10- License as published by the Free Software Foundation; either
11- version 3 of the License, or (at your option) any later version.
12-
13- This library is distributed in the hope that it will be useful,
14- but WITHOUT ANY WARRANTY; without even the implied warranty of
15- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16- Lesser General Public License for more details.
17-
18- You should have received a copy of the GNU Lesser General
19- Public License along with this library; if not, write to the
20- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21- Boston, MA 02110-1301 USA.
22-***/
23+/*
24+ * Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>
25+ *
26+ * This program or library is free software; you can redistribute it
27+ * and/or modify it under the terms of the GNU Lesser General Public
28+ * License as published by the Free Software Foundation; either
29+ * version 3 of the License, or (at your option) any later version.
30+ *
31+ * This library is distributed in the hope that it will be useful,
32+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
33+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
34+ * Lesser General Public License for more details.
35+ *
36+ * You should have received a copy of the GNU Lesser General
37+ * Public License along with this library; if not, write to the
38+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
39+ * Boston, MA 02110-1301 USA.
40+ */
41
42 using Gtk;
43
44
45=== modified file 'lib/CMakeLists.txt'
46--- lib/CMakeLists.txt 2014-01-18 21:47:46 +0000
47+++ lib/CMakeLists.txt 2014-09-04 12:42:01 +0000
48@@ -74,6 +74,12 @@
49
50 include_directories (${CMAKE_CURRENT_SOURCE_DIR}/Widgets)
51
52+option (VAPI_COMMENTS "Include comments in the generated vapi file" OFF)
53+
54+if (VAPI_COMMENTS)
55+ set (VALAC_OPTIONS ${VALAC_OPTIONS} --vapi-comments)
56+endif ()
57+
58 vala_precompile (VALA_C ${PKG_NAME}
59 ${VALA_SOURCES}
60 PACKAGES
61@@ -114,4 +120,4 @@
62 if (INTROSPECTION_FOUND)
63 include (GObjectIntrospectionMacros)
64 add_target_gir (${PKG_NAME} ${PKG_GIR_NAME} ${PKG_NAME}.h "${VALA_C}" "${DEPS_CFLAGS}" ${API_VERSION} ${GI_PKG_DEPS})
65-endif ()
66\ No newline at end of file
67+endif ()
68
69=== modified file 'lib/Drawing/BufferSurface.vala'
70--- lib/Drawing/BufferSurface.vala 2013-12-11 01:53:02 +0000
71+++ lib/Drawing/BufferSurface.vala 2014-09-04 12:42:01 +0000
72@@ -1,22 +1,22 @@
73-/***
74- Copyright (C) 2011-2013 Robert Dyer,
75- Rico Tzschichholz <ricotz@ubuntu.com>
76-
77- This program or library is free software; you can redistribute it
78- and/or modify it under the terms of the GNU Lesser General Public
79- License as published by the Free Software Foundation; either
80- version 3 of the License, or (at your option) any later version.
81-
82- This library is distributed in the hope that it will be useful,
83- but WITHOUT ANY WARRANTY; without even the implied warranty of
84- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
85- Lesser General Public License for more details.
86-
87- You should have received a copy of the GNU Lesser General
88- Public License along with this library; if not, write to the
89- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
90- Boston, MA 02110-1301 USA.
91-***/
92+/*
93+ * Copyright (C) 2011-2013 Robert Dyer,
94+ * Rico Tzschichholz <ricotz@ubuntu.com>
95+ *
96+ * This program or library is free software; you can redistribute it
97+ * and/or modify it under the terms of the GNU Lesser General Public
98+ * License as published by the Free Software Foundation; either
99+ * version 3 of the License, or (at your option) any later version.
100+ *
101+ * This library is distributed in the hope that it will be useful,
102+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
103+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
104+ * Lesser General Public License for more details.
105+ *
106+ * You should have received a copy of the GNU Lesser General
107+ * Public License along with this library; if not, write to the
108+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
109+ * Boston, MA 02110-1301 USA.
110+ */
111
112 using Cairo;
113 using Posix;
114
115=== modified file 'lib/Drawing/Color.vala'
116--- lib/Drawing/Color.vala 2013-03-20 15:42:25 +0000
117+++ lib/Drawing/Color.vala 2014-09-04 12:42:01 +0000
118@@ -1,21 +1,21 @@
119-/***
120- Copyright (C) 2011-2013 Robert Dyer
121-
122- This program or library is free software; you can redistribute it
123- and/or modify it under the terms of the GNU Lesser General Public
124- License as published by the Free Software Foundation; either
125- version 3 of the License, or (at your option) any later version.
126-
127- This library is distributed in the hope that it will be useful,
128- but WITHOUT ANY WARRANTY; without even the implied warranty of
129- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
130- Lesser General Public License for more details.
131-
132- You should have received a copy of the GNU Lesser General
133- Public License along with this library; if not, write to the
134- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
135- Boston, MA 02110-1301 USA.
136-***/
137+/*
138+ * Copyright (C) 2011-2013 Robert Dyer
139+ *
140+ * This program or library is free software; you can redistribute it
141+ * and/or modify it under the terms of the GNU Lesser General Public
142+ * License as published by the Free Software Foundation; either
143+ * version 3 of the License, or (at your option) any later version.
144+ *
145+ * This library is distributed in the hope that it will be useful,
146+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
147+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
148+ * Lesser General Public License for more details.
149+ *
150+ * You should have received a copy of the GNU Lesser General
151+ * Public License along with this library; if not, write to the
152+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
153+ * Boston, MA 02110-1301 USA.
154+ */
155
156 using Gdk;
157
158
159=== modified file 'lib/Drawing/Utilities.vala'
160--- lib/Drawing/Utilities.vala 2013-03-20 15:42:25 +0000
161+++ lib/Drawing/Utilities.vala 2014-09-04 12:42:01 +0000
162@@ -1,22 +1,22 @@
163-/***
164- Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>,
165- Robert Dyer
166-
167- This program or library is free software; you can redistribute it
168- and/or modify it under the terms of the GNU Lesser General Public
169- License as published by the Free Software Foundation; either
170- version 3 of the License, or (at your option) any later version.
171-
172- This library is distributed in the hope that it will be useful,
173- but WITHOUT ANY WARRANTY; without even the implied warranty of
174- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
175- Lesser General Public License for more details.
176-
177- You should have received a copy of the GNU Lesser General
178- Public License along with this library; if not, write to the
179- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
180- Boston, MA 02110-1301 USA.
181-***/
182+/*
183+ * Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>,
184+ * Robert Dyer
185+ *
186+ * This program or library is free software; you can redistribute it
187+ * and/or modify it under the terms of the GNU Lesser General Public
188+ * License as published by the Free Software Foundation; either
189+ * version 3 of the License, or (at your option) any later version.
190+ *
191+ * This library is distributed in the hope that it will be useful,
192+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
193+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
194+ * Lesser General Public License for more details.
195+ *
196+ * You should have received a copy of the GNU Lesser General
197+ * Public License along with this library; if not, write to the
198+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
199+ * Boston, MA 02110-1301 USA.
200+ */
201
202 using Cairo;
203 using Gdk;
204
205=== modified file 'lib/Services/Contractor.vala'
206--- lib/Services/Contractor.vala 2014-04-05 01:29:22 +0000
207+++ lib/Services/Contractor.vala 2014-09-04 12:42:01 +0000
208@@ -1,21 +1,21 @@
209-/***
210- Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
211-
212- This program or library is free software; you can redistribute it
213- and/or modify it under the terms of the GNU Lesser General Public
214- License as published by the Free Software Foundation; either
215- version 3 of the License, or (at your option) any later version.
216-
217- This library is distributed in the hope that it will be useful,
218- but WITHOUT ANY WARRANTY; without even the implied warranty of
219- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
220- Lesser General Public License for more details.
221-
222- You should have received a copy of the GNU Lesser General
223- Public License along with this library; if not, write to the
224- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
225- Boston, MA 02110-1301 USA.
226-***/
227+/*
228+ * Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
229+ *
230+ * This program or library is free software; you can redistribute it
231+ * and/or modify it under the terms of the GNU Lesser General Public
232+ * License as published by the Free Software Foundation; either
233+ * version 3 of the License, or (at your option) any later version.
234+ *
235+ * This library is distributed in the hope that it will be useful,
236+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
237+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
238+ * Lesser General Public License for more details.
239+ *
240+ * You should have received a copy of the GNU Lesser General
241+ * Public License along with this library; if not, write to the
242+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
243+ * Boston, MA 02110-1301 USA.
244+ */
245
246 namespace Granite.Services {
247 [DBus (name = "org.elementary.Contractor")]
248
249=== modified file 'lib/Services/ContractorProxy.vala'
250--- lib/Services/ContractorProxy.vala 2014-04-09 00:03:08 +0000
251+++ lib/Services/ContractorProxy.vala 2014-09-04 12:42:01 +0000
252@@ -1,23 +1,23 @@
253-/***
254- Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>,
255- Akshay Shekher <voldyman666@gmail.com>,
256- Victor Martinez <victoreduardm@gmail.com>
257-
258- This program or library is free software; you can redistribute it
259- and/or modify it under the terms of the GNU Lesser General Public
260- License as published by the Free Software Foundation; either
261- version 3 of the License, or (at your option) any later version.
262-
263- This library is distributed in the hope that it will be useful,
264- but WITHOUT ANY WARRANTY; without even the implied warranty of
265- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
266- Lesser General Public License for more details.
267-
268- You should have received a copy of the GNU Lesser General
269- Public License along with this library; if not, write to the
270- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
271- Boston, MA 02110-1301 USA.
272-***/
273+/*
274+ * Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>,
275+ * Akshay Shekher <voldyman666@gmail.com>,
276+ * Victor Martinez <victoreduardm@gmail.com>
277+ *
278+ * This program or library is free software; you can redistribute it
279+ * and/or modify it under the terms of the GNU Lesser General Public
280+ * License as published by the Free Software Foundation; either
281+ * version 3 of the License, or (at your option) any later version.
282+ *
283+ * This library is distributed in the hope that it will be useful,
284+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
285+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
286+ * Lesser General Public License for more details.
287+ *
288+ * You should have received a copy of the GNU Lesser General
289+ * Public License along with this library; if not, write to the
290+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
291+ * Boston, MA 02110-1301 USA.
292+ */
293
294 namespace Granite.Services {
295 /**
296
297=== modified file 'lib/Services/IconFactory.vala'
298--- lib/Services/IconFactory.vala 2014-04-05 05:04:42 +0000
299+++ lib/Services/IconFactory.vala 2014-09-04 12:42:01 +0000
300@@ -1,22 +1,22 @@
301-/***
302- Copyright (C) 2011-2013 ammonkey <am.monkeyd@gmail.com>,
303- Mario Guerriero <mario@elementaryos.org>
304-
305- This program or library is free software; you can redistribute it
306- and/or modify it under the terms of the GNU Lesser General Public
307- License as published by the Free Software Foundation; either
308- version 3 of the License, or (at your option) any later version.
309-
310- This library is distributed in the hope that it will be useful,
311- but WITHOUT ANY WARRANTY; without even the implied warranty of
312- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
313- Lesser General Public License for more details.
314-
315- You should have received a copy of the GNU Lesser General
316- Public License along with this library; if not, write to the
317- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
318- Boston, MA 02110-1301 USA.
319-***/
320+/*
321+ * Copyright (C) 2011-2013 ammonkey <am.monkeyd@gmail.com>,
322+ * Mario Guerriero <mario@elementaryos.org>
323+ *
324+ * This program or library is free software; you can redistribute it
325+ * and/or modify it under the terms of the GNU Lesser General Public
326+ * License as published by the Free Software Foundation; either
327+ * version 3 of the License, or (at your option) any later version.
328+ *
329+ * This library is distributed in the hope that it will be useful,
330+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
331+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
332+ * Lesser General Public License for more details.
333+ *
334+ * You should have received a copy of the GNU Lesser General
335+ * Public License along with this library; if not, write to the
336+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
337+ * Boston, MA 02110-1301 USA.
338+ */
339
340 namespace Granite.Services {
341
342
343=== modified file 'lib/Services/Logger.vala'
344--- lib/Services/Logger.vala 2013-12-23 00:14:04 +0000
345+++ lib/Services/Logger.vala 2014-09-04 12:42:01 +0000
346@@ -1,21 +1,21 @@
347-/***
348- Copyright (C) 2011-2013 Robert Dyer
349-
350- This program or library is free software; you can redistribute it
351- and/or modify it under the terms of the GNU Lesser General Public
352- License as published by the Free Software Foundation; either
353- version 3 of the License, or (at your option) any later version.
354-
355- This library is distributed in the hope that it will be useful,
356- but WITHOUT ANY WARRANTY; without even the implied warranty of
357- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
358- Lesser General Public License for more details.
359-
360- You should have received a copy of the GNU Lesser General
361- Public License along with this library; if not, write to the
362- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
363- Boston, MA 02110-1301 USA.
364-***/
365+/*
366+ * Copyright (C) 2011-2013 Robert Dyer
367+ *
368+ * This program or library is free software; you can redistribute it
369+ * and/or modify it under the terms of the GNU Lesser General Public
370+ * License as published by the Free Software Foundation; either
371+ * version 3 of the License, or (at your option) any later version.
372+ *
373+ * This library is distributed in the hope that it will be useful,
374+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
375+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376+ * Lesser General Public License for more details.
377+ *
378+ * You should have received a copy of the GNU Lesser General
379+ * Public License along with this library; if not, write to the
380+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
381+ * Boston, MA 02110-1301 USA.
382+ */
383
384 namespace Granite.Services {
385
386
387=== modified file 'lib/Services/Paths.vala'
388--- lib/Services/Paths.vala 2013-03-20 15:42:25 +0000
389+++ lib/Services/Paths.vala 2014-09-04 12:42:01 +0000
390@@ -1,22 +1,22 @@
391-/***
392- Copyright (C) 2011-2013 Robert Dyer,
393- Rico Tzschichholz <ricotz@ubuntu.com>
394-
395- This program or library is free software; you can redistribute it
396- and/or modify it under the terms of the GNU Lesser General Public
397- License as published by the Free Software Foundation; either
398- version 3 of the License, or (at your option) any later version.
399-
400- This library is distributed in the hope that it will be useful,
401- but WITHOUT ANY WARRANTY; without even the implied warranty of
402- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
403- Lesser General Public License for more details.
404-
405- You should have received a copy of the GNU Lesser General
406- Public License along with this library; if not, write to the
407- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
408- Boston, MA 02110-1301 USA.
409-***/
410+/*
411+ * Copyright (C) 2011-2013 Robert Dyer,
412+ * Rico Tzschichholz <ricotz@ubuntu.com>
413+ *
414+ * This program or library is free software; you can redistribute it
415+ * and/or modify it under the terms of the GNU Lesser General Public
416+ * License as published by the Free Software Foundation; either
417+ * version 3 of the License, or (at your option) any later version.
418+ *
419+ * This library is distributed in the hope that it will be useful,
420+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
421+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
422+ * Lesser General Public License for more details.
423+ *
424+ * You should have received a copy of the GNU Lesser General
425+ * Public License along with this library; if not, write to the
426+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
427+ * Boston, MA 02110-1301 USA.
428+ */
429
430 namespace Granite.Services {
431
432
433=== modified file 'lib/Services/Settings.vala'
434--- lib/Services/Settings.vala 2014-07-02 19:50:45 +0000
435+++ lib/Services/Settings.vala 2014-09-04 12:42:01 +0000
436@@ -1,22 +1,22 @@
437-/***
438- Copyright (C) 2011-2013 Robert Dyer,
439- Rico Tzschichholz <ricotz@ubuntu.com>
440-
441- This program or library is free software; you can redistribute it
442- and/or modify it under the terms of the GNU Lesser General Public
443- License as published by the Free Software Foundation; either
444- version 3 of the License, or (at your option) any later version.
445-
446- This library is distributed in the hope that it will be useful,
447- but WITHOUT ANY WARRANTY; without even the implied warranty of
448- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
449- Lesser General Public License for more details.
450-
451- You should have received a copy of the GNU Lesser General
452- Public License along with this library; if not, write to the
453- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
454- Boston, MA 02110-1301 USA.
455-***/
456+/*
457+ * Copyright (C) 2011-2013 Robert Dyer,
458+ * Rico Tzschichholz <ricotz@ubuntu.com>
459+ *
460+ * This program or library is free software; you can redistribute it
461+ * and/or modify it under the terms of the GNU Lesser General Public
462+ * License as published by the Free Software Foundation; either
463+ * version 3 of the License, or (at your option) any later version.
464+ *
465+ * This library is distributed in the hope that it will be useful,
466+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
467+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
468+ * Lesser General Public License for more details.
469+ *
470+ * You should have received a copy of the GNU Lesser General
471+ * Public License along with this library; if not, write to the
472+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
473+ * Boston, MA 02110-1301 USA.
474+ */
475
476 namespace Granite.Services {
477
478
479=== modified file 'lib/Services/SimpleCommand.vala'
480--- lib/Services/SimpleCommand.vala 2013-03-20 15:42:25 +0000
481+++ lib/Services/SimpleCommand.vala 2014-09-04 12:42:01 +0000
482@@ -1,21 +1,21 @@
483-/***
484- Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
485-
486- This program or library is free software; you can redistribute it
487- and/or modify it under the terms of the GNU Lesser General Public
488- License as published by the Free Software Foundation; either
489- version 3 of the License, or (at your option) any later version.
490-
491- This library is distributed in the hope that it will be useful,
492- but WITHOUT ANY WARRANTY; without even the implied warranty of
493- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
494- Lesser General Public License for more details.
495-
496- You should have received a copy of the GNU Lesser General
497- Public License along with this library; if not, write to the
498- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
499- Boston, MA 02110-1301 USA.
500-***/
501+/*
502+ * Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
503+ *
504+ * This program or library is free software; you can redistribute it
505+ * and/or modify it under the terms of the GNU Lesser General Public
506+ * License as published by the Free Software Foundation; either
507+ * version 3 of the License, or (at your option) any later version.
508+ *
509+ * This library is distributed in the hope that it will be useful,
510+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
511+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
512+ * Lesser General Public License for more details.
513+ *
514+ * You should have received a copy of the GNU Lesser General
515+ * Public License along with this library; if not, write to the
516+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
517+ * Boston, MA 02110-1301 USA.
518+ */
519
520 /**
521 * This class is a wrapper to run an async command. It provides useful signals.
522
523=== modified file 'lib/Services/System.vala'
524--- lib/Services/System.vala 2013-03-20 15:42:25 +0000
525+++ lib/Services/System.vala 2014-09-04 12:42:01 +0000
526@@ -1,21 +1,21 @@
527-/***
528- Copyright (C) 2011-2013 Robert Dyer
529-
530- This program or library is free software; you can redistribute it
531- and/or modify it under the terms of the GNU Lesser General Public
532- License as published by the Free Software Foundation; either
533- version 3 of the License, or (at your option) any later version.
534-
535- This library is distributed in the hope that it will be useful,
536- but WITHOUT ANY WARRANTY; without even the implied warranty of
537- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
538- Lesser General Public License for more details.
539-
540- You should have received a copy of the GNU Lesser General
541- Public License along with this library; if not, write to the
542- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
543- Boston, MA 02110-1301 USA.
544-***/
545+/*
546+ * Copyright (C) 2011-2013 Robert Dyer
547+ *
548+ * This program or library is free software; you can redistribute it
549+ * and/or modify it under the terms of the GNU Lesser General Public
550+ * License as published by the Free Software Foundation; either
551+ * version 3 of the License, or (at your option) any later version.
552+ *
553+ * This library is distributed in the hope that it will be useful,
554+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
555+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
556+ * Lesser General Public License for more details.
557+ *
558+ * You should have received a copy of the GNU Lesser General
559+ * Public License along with this library; if not, write to the
560+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
561+ * Boston, MA 02110-1301 USA.
562+ */
563
564 namespace Granite.Services {
565
566
567=== modified file 'lib/Widgets/AboutDialog.vala'
568--- lib/Widgets/AboutDialog.vala 2014-08-29 15:20:36 +0000
569+++ lib/Widgets/AboutDialog.vala 2014-09-04 12:42:01 +0000
570@@ -1,21 +1,21 @@
571-/***
572- Copyright (C) 2011-2013 Adrien Plazas <kekun.plazas@laposte.net>
573-
574- This program or library is free software; you can redistribute it
575- and/or modify it under the terms of the GNU Lesser General Public
576- License as published by the Free Software Foundation; either
577- version 3 of the License, or (at your option) any later version.
578-
579- This library is distributed in the hope that it will be useful,
580- but WITHOUT ANY WARRANTY; without even the implied warranty of
581- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
582- Lesser General Public License for more details.
583-
584- You should have received a copy of the GNU Lesser General
585- Public License along with this library; if not, write to the
586- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
587- Boston, MA 02110-1301 USA.
588-***/
589+/*
590+ * Copyright (C) 2011-2013 Adrien Plazas <kekun.plazas@laposte.net>
591+ *
592+ * This program or library is free software; you can redistribute it
593+ * and/or modify it under the terms of the GNU Lesser General Public
594+ * License as published by the Free Software Foundation; either
595+ * version 3 of the License, or (at your option) any later version.
596+ *
597+ * This library is distributed in the hope that it will be useful,
598+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
599+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
600+ * Lesser General Public License for more details.
601+ *
602+ * You should have received a copy of the GNU Lesser General
603+ * Public License along with this library; if not, write to the
604+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
605+ * Boston, MA 02110-1301 USA.
606+ */
607
608 using Gtk;
609
610
611=== modified file 'lib/Widgets/AppMenu.vala'
612--- lib/Widgets/AppMenu.vala 2014-07-10 23:40:22 +0000
613+++ lib/Widgets/AppMenu.vala 2014-09-04 12:42:01 +0000
614@@ -1,21 +1,21 @@
615-/***
616- Copyright (C) 2011-2013 Mathijs Henquet
617-
618- This program or library is free software; you can redistribute it
619- and/or modify it under the terms of the GNU Lesser General Public
620- License as published by the Free Software Foundation; either
621- version 3 of the License, or (at your option) any later version.
622-
623- This library is distributed in the hope that it will be useful,
624- but WITHOUT ANY WARRANTY; without even the implied warranty of
625- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
626- Lesser General Public License for more details.
627-
628- You should have received a copy of the GNU Lesser General
629- Public License along with this library; if not, write to the
630- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
631- Boston, MA 02110-1301 USA.
632-***/
633+/*
634+ * Copyright (C) 2011-2013 Mathijs Henquet
635+ *
636+ * This program or library is free software; you can redistribute it
637+ * and/or modify it under the terms of the GNU Lesser General Public
638+ * License as published by the Free Software Foundation; either
639+ * version 3 of the License, or (at your option) any later version.
640+ *
641+ * This library is distributed in the hope that it will be useful,
642+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
643+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
644+ * Lesser General Public License for more details.
645+ *
646+ * You should have received a copy of the GNU Lesser General
647+ * Public License along with this library; if not, write to the
648+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
649+ * Boston, MA 02110-1301 USA.
650+ */
651
652 using Gtk;
653
654
655=== modified file 'lib/Widgets/CellRendererBadge.vala'
656--- lib/Widgets/CellRendererBadge.vala 2014-04-05 09:43:07 +0000
657+++ lib/Widgets/CellRendererBadge.vala 2014-09-04 12:42:01 +0000
658@@ -1,21 +1,21 @@
659-/***
660- Copyright (C) 2012-2013 Victor Eduardo <victoreduardm@gmal.com>
661-
662- This program or library is free software; you can redistribute it
663- and/or modify it under the terms of the GNU Lesser General Public
664- License as published by the Free Software Foundation; either
665- version 3 of the License, or (at your option) any later version.
666-
667- This library is distributed in the hope that it will be useful,
668- but WITHOUT ANY WARRANTY; without even the implied warranty of
669- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
670- Lesser General Public License for more details.
671-
672- You should have received a copy of the GNU Lesser General
673- Public License along with this library; if not, write to the
674- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
675- Boston, MA 02110-1301 USA.
676-***/
677+/*
678+ * Copyright (C) 2012-2013 Victor Eduardo <victoreduardm@gmal.com>
679+ *
680+ * This program or library is free software; you can redistribute it
681+ * and/or modify it under the terms of the GNU Lesser General Public
682+ * License as published by the Free Software Foundation; either
683+ * version 3 of the License, or (at your option) any later version.
684+ *
685+ * This library is distributed in the hope that it will be useful,
686+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
687+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
688+ * Lesser General Public License for more details.
689+ *
690+ * You should have received a copy of the GNU Lesser General
691+ * Public License along with this library; if not, write to the
692+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
693+ * Boston, MA 02110-1301 USA.
694+ */
695
696 /**
697 * A badge renderer.
698@@ -140,4 +140,4 @@
699 {
700 assert_not_reached ();
701 }
702-}
703\ No newline at end of file
704+}
705
706=== modified file 'lib/Widgets/CellRendererExpander.vala'
707--- lib/Widgets/CellRendererExpander.vala 2013-04-23 05:28:57 +0000
708+++ lib/Widgets/CellRendererExpander.vala 2014-09-04 12:42:01 +0000
709@@ -1,21 +1,21 @@
710-/***
711- Copyright (C) 2012-2013 Granite Developers
712-
713- This program or library is free software; you can redistribute it
714- and/or modify it under the terms of the GNU Lesser General Public
715- License as published by the Free Software Foundation; either
716- version 3 of the License, or (at your option) any later version.
717-
718- This library is distributed in the hope that it will be useful,
719- but WITHOUT ANY WARRANTY; without even the implied warranty of
720- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
721- Lesser General Public License for more details.
722-
723- You should have received a copy of the GNU Lesser General
724- Public License along with this library; if not, write to the
725- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
726- Boston, MA 02110-1301 USA.
727-***/
728+/*
729+ * Copyright (C) 2012-2013 Granite Developers
730+ *
731+ * This program or library is free software; you can redistribute it
732+ * and/or modify it under the terms of the GNU Lesser General Public
733+ * License as published by the Free Software Foundation; either
734+ * version 3 of the License, or (at your option) any later version.
735+ *
736+ * This library is distributed in the hope that it will be useful,
737+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
738+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
739+ * Lesser General Public License for more details.
740+ *
741+ * You should have received a copy of the GNU Lesser General
742+ * Public License along with this library; if not, write to the
743+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
744+ * Boston, MA 02110-1301 USA.
745+ */
746
747 /**
748 * An expander renderer.
749
750=== modified file 'lib/Widgets/CollapsiblePaned.vala'
751--- lib/Widgets/CollapsiblePaned.vala 2013-03-20 15:42:25 +0000
752+++ lib/Widgets/CollapsiblePaned.vala 2014-09-04 12:42:01 +0000
753@@ -1,21 +1,21 @@
754-/***
755- Copyright (C) 2011-2013 Mathijs Henquet
756-
757- This program or library is free software; you can redistribute it
758- and/or modify it under the terms of the GNU Lesser General Public
759- License as published by the Free Software Foundation; either
760- version 3 of the License, or (at your option) any later version.
761-
762- This library is distributed in the hope that it will be useful,
763- but WITHOUT ANY WARRANTY; without even the implied warranty of
764- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
765- Lesser General Public License for more details.
766-
767- You should have received a copy of the GNU Lesser General
768- Public License along with this library; if not, write to the
769- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
770- Boston, MA 02110-1301 USA.
771-***/
772+/*
773+ * Copyright (C) 2011-2013 Mathijs Henquet
774+ *
775+ * This program or library is free software; you can redistribute it
776+ * and/or modify it under the terms of the GNU Lesser General Public
777+ * License as published by the Free Software Foundation; either
778+ * version 3 of the License, or (at your option) any later version.
779+ *
780+ * This library is distributed in the hope that it will be useful,
781+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
782+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
783+ * Lesser General Public License for more details.
784+ *
785+ * You should have received a copy of the GNU Lesser General
786+ * Public License along with this library; if not, write to the
787+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
788+ * Boston, MA 02110-1301 USA.
789+ */
790
791 public enum Granite.CollapseMode {
792 NONE = 0,
793
794=== modified file 'lib/Widgets/CompositedWindow.vala'
795--- lib/Widgets/CompositedWindow.vala 2013-03-20 15:42:25 +0000
796+++ lib/Widgets/CompositedWindow.vala 2014-09-04 12:42:01 +0000
797@@ -1,21 +1,21 @@
798-/***
799- Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>
800-
801- This program or library is free software; you can redistribute it
802- and/or modify it under the terms of the GNU Lesser General Public
803- License as published by the Free Software Foundation; either
804- version 3 of the License, or (at your option) any later version.
805-
806- This library is distributed in the hope that it will be useful,
807- but WITHOUT ANY WARRANTY; without even the implied warranty of
808- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
809- Lesser General Public License for more details.
810-
811- You should have received a copy of the GNU Lesser General
812- Public License along with this library; if not, write to the
813- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
814- Boston, MA 02110-1301 USA.
815-***/
816+/*
817+ * Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>
818+ *
819+ * This program or library is free software; you can redistribute it
820+ * and/or modify it under the terms of the GNU Lesser General Public
821+ * License as published by the Free Software Foundation; either
822+ * version 3 of the License, or (at your option) any later version.
823+ *
824+ * This library is distributed in the hope that it will be useful,
825+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
826+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
827+ * Lesser General Public License for more details.
828+ *
829+ * You should have received a copy of the GNU Lesser General
830+ * Public License along with this library; if not, write to the
831+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
832+ * Boston, MA 02110-1301 USA.
833+ */
834
835 using Gtk;
836 using Gdk;
837
838=== modified file 'lib/Widgets/ContractorMenu.vala'
839--- lib/Widgets/ContractorMenu.vala 2014-04-05 06:20:39 +0000
840+++ lib/Widgets/ContractorMenu.vala 2014-09-04 12:42:01 +0000
841@@ -1,21 +1,21 @@
842-/***
843- Copyright (C) 2012-2013 Andrea Basso <andrea@elementaryos.org>
844-
845- This program or library is free software; you can redistribute it
846- and/or modify it under the terms of the GNU Lesser General Public
847- License as published by the Free Software Foundation; either
848- version 3 of the License, or (at your option) any later version.
849-
850- This library is distributed in the hope that it will be useful,
851- but WITHOUT ANY WARRANTY; without even the implied warranty of
852- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
853- Lesser General Public License for more details.
854-
855- You should have received a copy of the GNU Lesser General
856- Public License along with this library; if not, write to the
857- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
858- Boston, MA 02110-1301 USA.
859-***/
860+/*
861+ * Copyright (C) 2012-2013 Andrea Basso <andrea@elementaryos.org>
862+ *
863+ * This program or library is free software; you can redistribute it
864+ * and/or modify it under the terms of the GNU Lesser General Public
865+ * License as published by the Free Software Foundation; either
866+ * version 3 of the License, or (at your option) any later version.
867+ *
868+ * This library is distributed in the hope that it will be useful,
869+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
870+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
871+ * Lesser General Public License for more details.
872+ *
873+ * You should have received a copy of the GNU Lesser General
874+ * Public License along with this library; if not, write to the
875+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
876+ * Boston, MA 02110-1301 USA.
877+ */
878
879 /**
880 * This class provides a simple menu for managing Contractor.
881
882=== modified file 'lib/Widgets/ContractorView.vala'
883--- lib/Widgets/ContractorView.vala 2014-04-05 06:20:39 +0000
884+++ lib/Widgets/ContractorView.vala 2014-09-04 12:42:01 +0000
885@@ -1,21 +1,21 @@
886-/***
887- Copyright (C) 2011-2013 Tom Beckmann <tom@elementaryos.org>
888-
889- This program or library is free software; you can redistribute it
890- and/or modify it under the terms of the GNU Lesser General Public
891- License as published by the Free Software Foundation; either
892- version 3 of the License, or (at your option) any later version.
893-
894- This library is distributed in the hope that it will be useful,
895- but WITHOUT ANY WARRANTY; without even the implied warranty of
896- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
897- Lesser General Public License for more details.
898-
899- You should have received a copy of the GNU Lesser General
900- Public License along with this library; if not, write to the
901- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
902- Boston, MA 02110-1301 USA.
903-***/
904+/*
905+ * Copyright (C) 2011-2013 Tom Beckmann <tom@elementaryos.org>
906+ *
907+ * This program or library is free software; you can redistribute it
908+ * and/or modify it under the terms of the GNU Lesser General Public
909+ * License as published by the Free Software Foundation; either
910+ * version 3 of the License, or (at your option) any later version.
911+ *
912+ * This library is distributed in the hope that it will be useful,
913+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
914+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
915+ * Lesser General Public License for more details.
916+ *
917+ * You should have received a copy of the GNU Lesser General
918+ * Public License along with this library; if not, write to the
919+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
920+ * Boston, MA 02110-1301 USA.
921+ */
922
923 using Gtk;
924
925
926=== modified file 'lib/Widgets/DatePicker.vala'
927--- lib/Widgets/DatePicker.vala 2014-04-27 22:25:07 +0000
928+++ lib/Widgets/DatePicker.vala 2014-09-04 12:42:01 +0000
929@@ -1,21 +1,21 @@
930-/***
931- Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>
932-
933- This program or library is free software; you can redistribute it
934- and/or modify it under the terms of the GNU Lesser General Public
935- License as published by the Free Software Foundation; either
936- version 3 of the License, or (at your option) any later version.
937-
938- This library is distributed in the hope that it will be useful,
939- but WITHOUT ANY WARRANTY; without even the implied warranty of
940- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
941- Lesser General Public License for more details.
942-
943- You should have received a copy of the GNU Lesser General
944- Public License along with this library; if not, write to the
945- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
946- Boston, MA 02110-1301 USA.
947-***/
948+/*
949+ * Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>
950+ *
951+ * This program or library is free software; you can redistribute it
952+ * and/or modify it under the terms of the GNU Lesser General Public
953+ * License as published by the Free Software Foundation; either
954+ * version 3 of the License, or (at your option) any later version.
955+ *
956+ * This library is distributed in the hope that it will be useful,
957+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
958+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
959+ * Lesser General Public License for more details.
960+ *
961+ * You should have received a copy of the GNU Lesser General
962+ * Public License along with this library; if not, write to the
963+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
964+ * Boston, MA 02110-1301 USA.
965+ */
966
967 using Gtk;
968 using Gdk;
969@@ -149,4 +149,4 @@
970 popover.hide ();
971 }
972 }
973-}
974\ No newline at end of file
975+}
976
977=== modified file 'lib/Widgets/DecoratedWindow.vala'
978--- lib/Widgets/DecoratedWindow.vala 2014-04-09 05:28:49 +0000
979+++ lib/Widgets/DecoratedWindow.vala 2014-09-04 12:42:01 +0000
980@@ -1,23 +1,23 @@
981-/***
982- Copyright (C) 2011-2013 Granite Developers
983-
984- This program or library is free software; you can redistribute it
985- and/or modify it under the terms of the GNU Lesser General Public
986- License as published by the Free Software Foundation; either
987- version 3 of the License, or (at your option) any later version.
988-
989- This library is distributed in the hope that it will be useful,
990- but WITHOUT ANY WARRANTY; without even the implied warranty of
991- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
992- Lesser General Public License for more details.
993-
994- You should have received a copy of the GNU Lesser General
995- Public License along with this library; if not, write to the
996- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
997- Boston, MA 02110-1301 USA.
998-
999- Authored by: Tom Beckmann <tom@elementaryos.org>
1000-***/
1001+/*
1002+ * Copyright (C) 2011-2013 Granite Developers
1003+ *
1004+ * This program or library is free software; you can redistribute it
1005+ * and/or modify it under the terms of the GNU Lesser General Public
1006+ * License as published by the Free Software Foundation; either
1007+ * version 3 of the License, or (at your option) any later version.
1008+ *
1009+ * This library is distributed in the hope that it will be useful,
1010+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1011+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1012+ * Lesser General Public License for more details.
1013+ *
1014+ * You should have received a copy of the GNU Lesser General
1015+ * Public License along with this library; if not, write to the
1016+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1017+ * Boston, MA 02110-1301 USA.
1018+ *
1019+ * Authored by: Tom Beckmann <tom@elementaryos.org>
1020+ */
1021
1022 namespace Granite.Widgets {
1023
1024
1025=== modified file 'lib/Widgets/DynamicNotebook.vala'
1026--- lib/Widgets/DynamicNotebook.vala 2014-08-30 13:28:37 +0000
1027+++ lib/Widgets/DynamicNotebook.vala 2014-09-04 12:42:01 +0000
1028@@ -1,21 +1,21 @@
1029-/***
1030- Copyright (C) 2011-2013 Tom Beckmann <tom@elementaryos.org>
1031-
1032- This program or library is free software; you can redistribute it
1033- and/or modify it under the terms of the GNU Lesser General Public
1034- License as published by the Free Software Foundation; either
1035- version 3 of the License, or (at your option) any later version.
1036-
1037- This library is distributed in the hope that it will be useful,
1038- but WITHOUT ANY WARRANTY; without even the implied warranty of
1039- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1040- Lesser General Public License for more details.
1041-
1042- You should have received a copy of the GNU Lesser General
1043- Public License along with this library; if not, write to the
1044- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1045- Boston, MA 02110-1301 USA.
1046-***/
1047+/*
1048+ * Copyright (C) 2011-2013 Tom Beckmann <tom@elementaryos.org>
1049+ *
1050+ * This program or library is free software; you can redistribute it
1051+ * and/or modify it under the terms of the GNU Lesser General Public
1052+ * License as published by the Free Software Foundation; either
1053+ * version 3 of the License, or (at your option) any later version.
1054+ *
1055+ * This library is distributed in the hope that it will be useful,
1056+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1057+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1058+ * Lesser General Public License for more details.
1059+ *
1060+ * You should have received a copy of the GNU Lesser General
1061+ * Public License along with this library; if not, write to the
1062+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1063+ * Boston, MA 02110-1301 USA.
1064+ */
1065
1066 namespace Granite.Widgets {
1067
1068
1069=== modified file 'lib/Widgets/Entries.vala'
1070--- lib/Widgets/Entries.vala 2014-04-19 13:46:05 +0000
1071+++ lib/Widgets/Entries.vala 2014-09-04 12:42:01 +0000
1072@@ -1,24 +1,24 @@
1073-/***
1074- Copyright (C) 2011-2013 Avi Romanoff <avi@elementaryos.org>,
1075- Allen Lowe <allen@elementaryos.org>,
1076- Maxwell Barvian <maxwell@elementaryos.org>,
1077- Julien Spautz <spautz.julien@gmail.com>
1078-
1079- This program or library is free software; you can redistribute it
1080- and/or modify it under the terms of the GNU Lesser General Public
1081- License as published by the Free Software Foundation; either
1082- version 3 of the License, or (at your option) any later version.
1083-
1084- This library is distributed in the hope that it will be useful,
1085- but WITHOUT ANY WARRANTY; without even the implied warranty of
1086- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1087- Lesser General Public License for more details.
1088-
1089- You should have received a copy of the GNU Lesser General
1090- Public License along with this library; if not, write to the
1091- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1092- Boston, MA 02110-1301 USA.
1093-***/
1094+/*
1095+ * Copyright (C) 2011-2013 Avi Romanoff <avi@elementaryos.org>,
1096+ * Allen Lowe <allen@elementaryos.org>,
1097+ * Maxwell Barvian <maxwell@elementaryos.org>,
1098+ * Julien Spautz <spautz.julien@gmail.com>
1099+ *
1100+ * This program or library is free software; you can redistribute it
1101+ * and/or modify it under the terms of the GNU Lesser General Public
1102+ * License as published by the Free Software Foundation; either
1103+ * version 3 of the License, or (at your option) any later version.
1104+ *
1105+ * This library is distributed in the hope that it will be useful,
1106+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1107+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1108+ * Lesser General Public License for more details.
1109+ *
1110+ * You should have received a copy of the GNU Lesser General
1111+ * Public License along with this library; if not, write to the
1112+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1113+ * Boston, MA 02110-1301 USA.
1114+ */
1115
1116
1117 namespace Granite.Widgets {
1118
1119=== modified file 'lib/Widgets/LightWindow.vala'
1120--- lib/Widgets/LightWindow.vala 2014-04-09 05:28:49 +0000
1121+++ lib/Widgets/LightWindow.vala 2014-09-04 12:42:01 +0000
1122@@ -1,23 +1,23 @@
1123-/***
1124- Copyright (C) 2012-2013 Granite Developers
1125-
1126- This program or library is free software; you can redistribute it
1127- and/or modify it under the terms of the GNU Lesser General Public
1128- License as published by the Free Software Foundation; either
1129- version 3 of the License, or (at your option) any later version.
1130-
1131- This library is distributed in the hope that it will be useful,
1132- but WITHOUT ANY WARRANTY; without even the implied warranty of
1133- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1134- Lesser General Public License for more details.
1135-
1136- You should have received a copy of the GNU Lesser General
1137- Public License along with this library; if not, write to the
1138- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1139- Boston, MA 02110-1301 USA.
1140-
1141- Authored by: Tom Beckmann <tom@elementaryos.org>
1142-***/
1143+/*
1144+ * Copyright (C) 2012-2013 Granite Developers
1145+ *
1146+ * This program or library is free software; you can redistribute it
1147+ * and/or modify it under the terms of the GNU Lesser General Public
1148+ * License as published by the Free Software Foundation; either
1149+ * version 3 of the License, or (at your option) any later version.
1150+ *
1151+ * This library is distributed in the hope that it will be useful,
1152+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1153+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1154+ * Lesser General Public License for more details.
1155+ *
1156+ * You should have received a copy of the GNU Lesser General
1157+ * Public License along with this library; if not, write to the
1158+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1159+ * Boston, MA 02110-1301 USA.
1160+ *
1161+ * Authored by: Tom Beckmann <tom@elementaryos.org>
1162+ */
1163
1164 namespace Granite.Widgets {
1165
1166
1167=== modified file 'lib/Widgets/ModeButton.vala'
1168--- lib/Widgets/ModeButton.vala 2014-04-05 11:07:27 +0000
1169+++ lib/Widgets/ModeButton.vala 2014-09-04 12:42:01 +0000
1170@@ -1,24 +1,24 @@
1171-/***
1172- Copyright (C) 2008-2013 Christian Hergert <chris@dronelabs.com>,
1173- Giulio Collura <random.cpp@gmail.com>,
1174- Victor Eduardo <victoreduardm@gmail.com>,
1175- ammonkey <am.monkeyd@gmail.com>
1176-
1177- This program or library is free software; you can redistribute it
1178- and/or modify it under the terms of the GNU Lesser General Public
1179- License as published by the Free Software Foundation; either
1180- version 3 of the License, or (at your option) any later version.
1181-
1182- This library is distributed in the hope that it will be useful,
1183- but WITHOUT ANY WARRANTY; without even the implied warranty of
1184- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1185- Lesser General Public License for more details.
1186-
1187- You should have received a copy of the GNU Lesser General
1188- Public License along with this library; if not, write to the
1189- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1190- Boston, MA 02110-1301 USA.
1191-***/
1192+/*
1193+ * Copyright (C) 2008-2013 Christian Hergert <chris@dronelabs.com>,
1194+ * Giulio Collura <random.cpp@gmail.com>,
1195+ * Victor Eduardo <victoreduardm@gmail.com>,
1196+ * ammonkey <am.monkeyd@gmail.com>
1197+ *
1198+ * This program or library is free software; you can redistribute it
1199+ * and/or modify it under the terms of the GNU Lesser General Public
1200+ * License as published by the Free Software Foundation; either
1201+ * version 3 of the License, or (at your option) any later version.
1202+ *
1203+ * This library is distributed in the hope that it will be useful,
1204+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1205+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1206+ * Lesser General Public License for more details.
1207+ *
1208+ * You should have received a copy of the GNU Lesser General
1209+ * Public License along with this library; if not, write to the
1210+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1211+ * Boston, MA 02110-1301 USA.
1212+ */
1213
1214 namespace Granite.Widgets {
1215
1216
1217=== modified file 'lib/Widgets/OverlayBar.vala'
1218--- lib/Widgets/OverlayBar.vala 2014-04-18 19:35:30 +0000
1219+++ lib/Widgets/OverlayBar.vala 2014-09-04 12:42:01 +0000
1220@@ -1,22 +1,22 @@
1221-/***
1222- Copyright (C) 2012 ammonkey <am.monkeyd@gmail.com>
1223- Copyright (C) 2013 Julián Unrrein <junrrein@gmail.com>
1224-
1225- This program or library is free software; you can redistribute it
1226- and/or modify it under the terms of the GNU Lesser General Public
1227- License as published by the Free Software Foundation; either
1228- version 3 of the License, or (at your option) any later version.
1229-
1230- This library is distributed in the hope that it will be useful,
1231- but WITHOUT ANY WARRANTY; without even the implied warranty of
1232- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1233- Lesser General Public License for more details.
1234-
1235- You should have received a copy of the GNU Lesser General
1236- Public License along with this library; if not, write to the
1237- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1238- Boston, MA 02110-1301 USA.
1239-***/
1240+/*
1241+ * Copyright (C) 2012 ammonkey <am.monkeyd@gmail.com>
1242+ * Copyright (C) 2013 Julián Unrrein <junrrein@gmail.com>
1243+ *
1244+ * This program or library is free software; you can redistribute it
1245+ * and/or modify it under the terms of the GNU Lesser General Public
1246+ * License as published by the Free Software Foundation; either
1247+ * version 3 of the License, or (at your option) any later version.
1248+ *
1249+ * This library is distributed in the hope that it will be useful,
1250+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1251+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1252+ * Lesser General Public License for more details.
1253+ *
1254+ * You should have received a copy of the GNU Lesser General
1255+ * Public License along with this library; if not, write to the
1256+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1257+ * Boston, MA 02110-1301 USA.
1258+ */
1259
1260 /**
1261 * A floating status bar that displays a single line of text.
1262
1263=== modified file 'lib/Widgets/PopOver.vala'
1264--- lib/Widgets/PopOver.vala 2014-04-27 22:25:07 +0000
1265+++ lib/Widgets/PopOver.vala 2014-09-04 12:42:01 +0000
1266@@ -1,21 +1,21 @@
1267-/***
1268- Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
1269-
1270- This program or library is free software; you can redistribute it
1271- and/or modify it under the terms of the GNU Lesser General Public
1272- License as published by the Free Software Foundation; either
1273- version 3 of the License, or (at your option) any later version.
1274-
1275- This library is distributed in the hope that it will be useful,
1276- but WITHOUT ANY WARRANTY; without even the implied warranty of
1277- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1278- Lesser General Public License for more details.
1279-
1280- You should have received a copy of the GNU Lesser General
1281- Public License along with this library; if not, write to the
1282- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1283- Boston, MA 02110-1301 USA.
1284-***/
1285+/*
1286+ * Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
1287+ *
1288+ * This program or library is free software; you can redistribute it
1289+ * and/or modify it under the terms of the GNU Lesser General Public
1290+ * License as published by the Free Software Foundation; either
1291+ * version 3 of the License, or (at your option) any later version.
1292+ *
1293+ * This library is distributed in the hope that it will be useful,
1294+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1295+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1296+ * Lesser General Public License for more details.
1297+ *
1298+ * You should have received a copy of the GNU Lesser General
1299+ * Public License along with this library; if not, write to the
1300+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1301+ * Boston, MA 02110-1301 USA.
1302+ */
1303
1304 /**
1305 * /!\ Unstable API
1306@@ -492,4 +492,4 @@
1307 cr.paint_with_alpha(1.0);
1308 return base.draw(cr);
1309 }
1310-}
1311\ No newline at end of file
1312+}
1313
1314=== modified file 'lib/Widgets/SidebarPaned.vala'
1315--- lib/Widgets/SidebarPaned.vala 2013-03-21 12:23:37 +0000
1316+++ lib/Widgets/SidebarPaned.vala 2014-09-04 12:42:01 +0000
1317@@ -1,23 +1,23 @@
1318-/***
1319- Copyright (C) 2011-2013 Granite Developers
1320-
1321- This program or library is free software; you can redistribute it
1322- and/or modify it under the terms of the GNU Lesser General Public
1323- License as published by the Free Software Foundation; either
1324- version 3 of the License, or (at your option) any later version.
1325-
1326- This library is distributed in the hope that it will be useful,
1327- but WITHOUT ANY WARRANTY; without even the implied warranty of
1328- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1329- Lesser General Public License for more details.
1330-
1331- You should have received a copy of the GNU Lesser General
1332- Public License along with this library; if not, write to the
1333- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1334- Boston, MA 02110-1301 USA.
1335-
1336- Authored by: Victor Eduardo <victoreduardm@gmail.com>
1337-***/
1338+/*
1339+ * Copyright (C) 2011-2013 Granite Developers
1340+ *
1341+ * This program or library is free software; you can redistribute it
1342+ * and/or modify it under the terms of the GNU Lesser General Public
1343+ * License as published by the Free Software Foundation; either
1344+ * version 3 of the License, or (at your option) any later version.
1345+ *
1346+ * This library is distributed in the hope that it will be useful,
1347+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1348+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1349+ * Lesser General Public License for more details.
1350+ *
1351+ * You should have received a copy of the GNU Lesser General
1352+ * Public License along with this library; if not, write to the
1353+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1354+ * Boston, MA 02110-1301 USA.
1355+ *
1356+ * Authored by: Victor Eduardo <victoreduardm@gmail.com>
1357+ */
1358
1359 [Deprecated (replacement = "Granite.Widgets.ThinPaned", since = "granite-0.2")]
1360 public class Granite.Widgets.SidebarPaned : ThinPaned {
1361
1362=== modified file 'lib/Widgets/SourceList.vala'
1363--- lib/Widgets/SourceList.vala 2014-08-30 13:28:37 +0000
1364+++ lib/Widgets/SourceList.vala 2014-09-04 12:42:01 +0000
1365@@ -1,21 +1,21 @@
1366-/***
1367- Copyright (C) 2012-2014 Victor Martinez <victoreduardm@gmail.com>
1368-
1369- This program or library is free software; you can redistribute it
1370- and/or modify it under the terms of the GNU Lesser General Public
1371- License as published by the Free Software Foundation; either
1372- version 3 of the License, or (at your option) any later version.
1373-
1374- This library is distributed in the hope that it will be useful,
1375- but WITHOUT ANY WARRANTY; without even the implied warranty of
1376- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1377- Lesser General Public License for more details.
1378-
1379- You should have received a copy of the GNU Lesser General
1380- Public License along with this library; if not, write to the
1381- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1382- Boston, MA 02110-1301 USA.
1383-***/
1384+/*
1385+ * Copyright (C) 2012-2014 Victor Martinez <victoreduardm@gmail.com>
1386+ *
1387+ * This program or library is free software; you can redistribute it
1388+ * and/or modify it under the terms of the GNU Lesser General Public
1389+ * License as published by the Free Software Foundation; either
1390+ * version 3 of the License, or (at your option) any later version.
1391+ *
1392+ * This library is distributed in the hope that it will be useful,
1393+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1394+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1395+ * Lesser General Public License for more details.
1396+ *
1397+ * You should have received a copy of the GNU Lesser General
1398+ * Public License along with this library; if not, write to the
1399+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1400+ * Boston, MA 02110-1301 USA.
1401+ */
1402
1403 namespace Granite.Widgets {
1404
1405
1406=== modified file 'lib/Widgets/StaticNotebook.vala'
1407--- lib/Widgets/StaticNotebook.vala 2014-04-19 13:46:05 +0000
1408+++ lib/Widgets/StaticNotebook.vala 2014-09-04 12:42:01 +0000
1409@@ -1,21 +1,21 @@
1410-/***
1411- Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
1412-
1413- This program or library is free software; you can redistribute it
1414- and/or modify it under the terms of the GNU Lesser General Public
1415- License as published by the Free Software Foundation; either
1416- version 3 of the License, or (at your option) any later version.
1417-
1418- This library is distributed in the hope that it will be useful,
1419- but WITHOUT ANY WARRANTY; without even the implied warranty of
1420- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1421- Lesser General Public License for more details.
1422-
1423- You should have received a copy of the GNU Lesser General
1424- Public License along with this library; if not, write to the
1425- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1426- Boston, MA 02110-1301 USA.
1427-***/
1428+/*
1429+ * Copyright (C) 2011-2013 Lucas Baudin <xapantu@gmail.com>
1430+ *
1431+ * This program or library is free software; you can redistribute it
1432+ * and/or modify it under the terms of the GNU Lesser General Public
1433+ * License as published by the Free Software Foundation; either
1434+ * version 3 of the License, or (at your option) any later version.
1435+ *
1436+ * This library is distributed in the hope that it will be useful,
1437+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1438+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1439+ * Lesser General Public License for more details.
1440+ *
1441+ * You should have received a copy of the GNU Lesser General
1442+ * Public License along with this library; if not, write to the
1443+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1444+ * Boston, MA 02110-1301 USA.
1445+ */
1446
1447 namespace Granite.Widgets {
1448
1449
1450=== modified file 'lib/Widgets/StatusBar.vala'
1451--- lib/Widgets/StatusBar.vala 2014-05-20 08:49:53 +0000
1452+++ lib/Widgets/StatusBar.vala 2014-09-04 12:42:01 +0000
1453@@ -1,23 +1,23 @@
1454-/***
1455- Copyright (C) 2012-2013 Granite Developers
1456-
1457- This program or library is free software; you can redistribute it
1458- and/or modify it under the terms of the GNU Lesser General Public
1459- License as published by the Free Software Foundation; either
1460- version 3 of the License, or (at your option) any later version.
1461-
1462- This library is distributed in the hope that it will be useful,
1463- but WITHOUT ANY WARRANTY; without even the implied warranty of
1464- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1465- Lesser General Public License for more details.
1466-
1467- You should have received a copy of the GNU Lesser General
1468- Public License along with this library; if not, write to the
1469- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1470- Boston, MA 02110-1301 USA.
1471-
1472- Authored by: Victor Eduardo <victoreduardm@gmal.com>
1473-***/
1474+/*
1475+ * Copyright (C) 2012-2013 Granite Developers
1476+ *
1477+ * This program or library is free software; you can redistribute it
1478+ * and/or modify it under the terms of the GNU Lesser General Public
1479+ * License as published by the Free Software Foundation; either
1480+ * version 3 of the License, or (at your option) any later version.
1481+ *
1482+ * This library is distributed in the hope that it will be useful,
1483+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1484+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1485+ * Lesser General Public License for more details.
1486+ *
1487+ * You should have received a copy of the GNU Lesser General
1488+ * Public License along with this library; if not, write to the
1489+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1490+ * Boston, MA 02110-1301 USA.
1491+ *
1492+ * Authored by: Victor Eduardo <victoreduardm@gmal.com>
1493+ */
1494
1495 /**
1496 * A status bar with a centered label.
1497
1498=== modified file 'lib/Widgets/ThinPaned.vala'
1499--- lib/Widgets/ThinPaned.vala 2014-04-04 03:47:51 +0000
1500+++ lib/Widgets/ThinPaned.vala 2014-09-04 12:42:01 +0000
1501@@ -1,21 +1,21 @@
1502-/***
1503- Copyright (C) 2012-2013 Victor Eduardo <victoreduardm@gmal.com>
1504-
1505- This program or library is free software; you can redistribute it
1506- and/or modify it under the terms of the GNU Lesser General Public
1507- License as published by the Free Software Foundation; either
1508- version 3 of the License, or (at your option) any later version.
1509-
1510- This library is distributed in the hope that it will be useful,
1511- but WITHOUT ANY WARRANTY; without even the implied warranty of
1512- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1513- Lesser General Public License for more details.
1514-
1515- You should have received a copy of the GNU Lesser General
1516- Public License along with this library; if not, write to the
1517- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1518- Boston, MA 02110-1301 USA.
1519-***/
1520+/*
1521+ * Copyright (C) 2012-2013 Victor Eduardo <victoreduardm@gmal.com>
1522+ *
1523+ * This program or library is free software; you can redistribute it
1524+ * and/or modify it under the terms of the GNU Lesser General Public
1525+ * License as published by the Free Software Foundation; either
1526+ * version 3 of the License, or (at your option) any later version.
1527+ *
1528+ * This library is distributed in the hope that it will be useful,
1529+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1530+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1531+ * Lesser General Public License for more details.
1532+ *
1533+ * You should have received a copy of the GNU Lesser General
1534+ * Public License along with this library; if not, write to the
1535+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1536+ * Boston, MA 02110-1301 USA.
1537+ */
1538
1539 /**
1540 * A widget with two adjustable panes.
1541
1542=== modified file 'lib/Widgets/TimePicker.vala'
1543--- lib/Widgets/TimePicker.vala 2014-07-19 12:14:31 +0000
1544+++ lib/Widgets/TimePicker.vala 2014-09-04 12:42:01 +0000
1545@@ -1,22 +1,22 @@
1546-/***
1547- Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>,
1548- Corentin Noël <tintou@mailoo.org>
1549-
1550- This program or library is free software; you can redistribute it
1551- and/or modify it under the terms of the GNU Lesser General Public
1552- License as published by the Free Software Foundation; either
1553- version 3 of the License, or (at your option) any later version.
1554-
1555- This library is distributed in the hope that it will be useful,
1556- but WITHOUT ANY WARRANTY; without even the implied warranty of
1557- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1558- Lesser General Public License for more details.
1559-
1560- You should have received a copy of the GNU Lesser General
1561- Public License along with this library; if not, write to the
1562- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1563- Boston, MA 02110-1301 USA.
1564-***/
1565+/*
1566+ * Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>,
1567+ * Corentin Noël <tintou@mailoo.org>
1568+ *
1569+ * This program or library is free software; you can redistribute it
1570+ * and/or modify it under the terms of the GNU Lesser General Public
1571+ * License as published by the Free Software Foundation; either
1572+ * version 3 of the License, or (at your option) any later version.
1573+ *
1574+ * This library is distributed in the hope that it will be useful,
1575+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1576+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1577+ * Lesser General Public License for more details.
1578+ *
1579+ * You should have received a copy of the GNU Lesser General
1580+ * Public License along with this library; if not, write to the
1581+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1582+ * Boston, MA 02110-1301 USA.
1583+ */
1584
1585 namespace Granite.Widgets {
1586
1587
1588=== modified file 'lib/Widgets/ToolButtonWithMenu.vala'
1589--- lib/Widgets/ToolButtonWithMenu.vala 2013-12-06 08:42:01 +0000
1590+++ lib/Widgets/ToolButtonWithMenu.vala 2014-09-04 12:42:01 +0000
1591@@ -1,24 +1,24 @@
1592-/***
1593- Copyright (C) 2011-2013 Mathijs Henquet
1594-
1595- This program or library is free software; you can redistribute it
1596- and/or modify it under the terms of the GNU Lesser General Public
1597- License as published by the Free Software Foundation; either
1598- version 3 of the License, or (at your option) any later version.
1599-
1600- This library is distributed in the hope that it will be useful,
1601- but WITHOUT ANY WARRANTY; without even the implied warranty of
1602- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1603- Lesser General Public License for more details.
1604-
1605- You should have received a copy of the GNU Lesser General
1606- Public License along with this library; if not, write to the
1607- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1608- Boston, MA 02110-1301 USA.
1609-
1610- Authors: Mathijs Henquet <mathijs.henquet@gmail.com>,
1611- ammonkey <am.monkeyd@gmail.com>
1612-***/
1613+/*
1614+ * Copyright (C) 2011-2013 Mathijs Henquet
1615+ *
1616+ * This program or library is free software; you can redistribute it
1617+ * and/or modify it under the terms of the GNU Lesser General Public
1618+ * License as published by the Free Software Foundation; either
1619+ * version 3 of the License, or (at your option) any later version.
1620+ *
1621+ * This library is distributed in the hope that it will be useful,
1622+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1623+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1624+ * Lesser General Public License for more details.
1625+ *
1626+ * You should have received a copy of the GNU Lesser General
1627+ * Public License along with this library; if not, write to the
1628+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1629+ * Boston, MA 02110-1301 USA.
1630+ *
1631+ * Authors: Mathijs Henquet <mathijs.henquet@gmail.com>,
1632+ * ammonkey <am.monkeyd@gmail.com>
1633+ */
1634
1635 /*
1636 * ToolButtonWithMenu
1637
1638=== modified file 'lib/Widgets/Utils.vala'
1639--- lib/Widgets/Utils.vala 2013-12-23 21:00:37 +0000
1640+++ lib/Widgets/Utils.vala 2014-09-04 12:42:01 +0000
1641@@ -1,21 +1,21 @@
1642-/***
1643- Copyright (C) 2012-2013 Granite Developers
1644-
1645- This program or library is free software; you can redistribute it
1646- and/or modify it under the terms of the GNU Lesser General Public
1647- License as published by the Free Software Foundation; either
1648- version 3 of the License, or (at your option) any later version.
1649-
1650- This library is distributed in the hope that it will be useful,
1651- but WITHOUT ANY WARRANTY; without even the implied warranty of
1652- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1653- Lesser General Public License for more details.
1654-
1655- You should have received a copy of the GNU Lesser General
1656- Public License along with this library; if not, write to the
1657- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1658- Boston, MA 02110-1301 USA.
1659-***/
1660+/*
1661+ * Copyright (C) 2012-2013 Granite Developers
1662+ *
1663+ * This program or library is free software; you can redistribute it
1664+ * and/or modify it under the terms of the GNU Lesser General Public
1665+ * License as published by the Free Software Foundation; either
1666+ * version 3 of the License, or (at your option) any later version.
1667+ *
1668+ * This library is distributed in the hope that it will be useful,
1669+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1670+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1671+ * Lesser General Public License for more details.
1672+ *
1673+ * You should have received a copy of the GNU Lesser General
1674+ * Public License along with this library; if not, write to the
1675+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1676+ * Boston, MA 02110-1301 USA.
1677+ */
1678
1679 public enum Granite.TextStyle {
1680 /**
1681@@ -286,4 +286,4 @@
1682 warning ("No schema indicating the button-layout is installed.");
1683 return null;
1684 }
1685-}
1686\ No newline at end of file
1687+}
1688
1689=== modified file 'lib/Widgets/Welcome.vala'
1690--- lib/Widgets/Welcome.vala 2014-07-03 05:28:47 +0000
1691+++ lib/Widgets/Welcome.vala 2014-09-04 12:42:01 +0000
1692@@ -1,22 +1,22 @@
1693-/***
1694- Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>,
1695- Victor Eduardo <victoreduardm@gmal.com>
1696-
1697- This program or library is free software; you can redistribute it
1698- and/or modify it under the terms of the GNU Lesser General Public
1699- License as published by the Free Software Foundation; either
1700- version 3 of the License, or (at your option) any later version.
1701-
1702- This library is distributed in the hope that it will be useful,
1703- but WITHOUT ANY WARRANTY; without even the implied warranty of
1704- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1705- Lesser General Public License for more details.
1706-
1707- You should have received a copy of the GNU Lesser General
1708- Public License along with this library; if not, write to the
1709- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1710- Boston, MA 02110-1301 USA.
1711-***/
1712+/*
1713+ * Copyright (C) 2011-2013 Maxwell Barvian <maxwell@elementaryos.org>,
1714+ * Victor Eduardo <victoreduardm@gmal.com>
1715+ *
1716+ * This program or library is free software; you can redistribute it
1717+ * and/or modify it under the terms of the GNU Lesser General Public
1718+ * License as published by the Free Software Foundation; either
1719+ * version 3 of the License, or (at your option) any later version.
1720+ *
1721+ * This library is distributed in the hope that it will be useful,
1722+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1723+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1724+ * Lesser General Public License for more details.
1725+ *
1726+ * You should have received a copy of the GNU Lesser General
1727+ * Public License along with this library; if not, write to the
1728+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1729+ * Boston, MA 02110-1301 USA.
1730+ */
1731
1732 using Gtk;
1733
1734@@ -231,4 +231,4 @@
1735
1736 return this.children.index (button);
1737 }
1738-}
1739\ No newline at end of file
1740+}
1741
1742=== modified file 'lib/Widgets/WrapLabel.vala'
1743--- lib/Widgets/WrapLabel.vala 2013-04-04 18:29:56 +0000
1744+++ lib/Widgets/WrapLabel.vala 2014-09-04 12:42:01 +0000
1745@@ -1,23 +1,23 @@
1746-/***
1747- Copyright (C) 2010 troorl <troorl@gmail.com>
1748- Copyright (C) 2011 ammonkey <am.monkeyd@gmail.com>
1749- Copyright (C) 2012-2013 Granite Developers
1750-
1751- This program or library is free software; you can redistribute it
1752- and/or modify it under the terms of the GNU Lesser General Public
1753- License as published by the Free Software Foundation; either
1754- version 3 of the License, or (at your option) any later version.
1755-
1756- This library is distributed in the hope that it will be useful,
1757- but WITHOUT ANY WARRANTY; without even the implied warranty of
1758- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1759- Lesser General Public License for more details.
1760-
1761- You should have received a copy of the GNU Lesser General
1762- Public License along with this library; if not, write to the
1763- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1764- Boston, MA 02110-1301 USA.
1765-***/
1766+/*
1767+ * Copyright (C) 2010 troorl <troorl@gmail.com>
1768+ * Copyright (C) 2011 ammonkey <am.monkeyd@gmail.com>
1769+ * Copyright (C) 2012-2013 Granite Developers
1770+ *
1771+ * This program or library is free software; you can redistribute it
1772+ * and/or modify it under the terms of the GNU Lesser General Public
1773+ * License as published by the Free Software Foundation; either
1774+ * version 3 of the License, or (at your option) any later version.
1775+ *
1776+ * This library is distributed in the hope that it will be useful,
1777+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1778+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1779+ * Lesser General Public License for more details.
1780+ *
1781+ * You should have received a copy of the GNU Lesser General
1782+ * Public License along with this library; if not, write to the
1783+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1784+ * Boston, MA 02110-1301 USA.
1785+ */
1786
1787 using Gtk;
1788
1789
1790=== modified file 'lib/style-classes.vala'
1791--- lib/style-classes.vala 2014-04-18 19:35:30 +0000
1792+++ lib/style-classes.vala 2014-09-04 12:42:01 +0000
1793@@ -1,21 +1,21 @@
1794-/***
1795- Copyright (C) 2012-2013 Granite Developers
1796-
1797- This program or library is free software; you can redistribute it
1798- and/or modify it under the terms of the GNU Lesser General Public
1799- License as published by the Free Software Foundation; either
1800- version 3 of the License, or (at your option) any later version.
1801-
1802- This library is distributed in the hope that it will be useful,
1803- but WITHOUT ANY WARRANTY; without even the implied warranty of
1804- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1805- Lesser General Public License for more details.
1806-
1807- You should have received a copy of the GNU Lesser General
1808- Public License along with this library; if not, write to the
1809- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1810- Boston, MA 02110-1301 USA.
1811-***/
1812+/*
1813+ * Copyright (C) 2012-2013 Granite Developers
1814+ *
1815+ * This program or library is free software; you can redistribute it
1816+ * and/or modify it under the terms of the GNU Lesser General Public
1817+ * License as published by the Free Software Foundation; either
1818+ * version 3 of the License, or (at your option) any later version.
1819+ *
1820+ * This library is distributed in the hope that it will be useful,
1821+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1822+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1823+ * Lesser General Public License for more details.
1824+ *
1825+ * You should have received a copy of the GNU Lesser General
1826+ * Public License along with this library; if not, write to the
1827+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1828+ * Boston, MA 02110-1301 USA.
1829+ */
1830
1831 namespace Granite.StyleClass {
1832 public const string CATEGORY_EXPANDER = "category-expander";

Subscribers

People subscribed via source and target branches