diff options
| author | Max Gaukler <development@maxgaukler.de> | 2018-09-11 14:05:17 +0000 |
|---|---|---|
| committer | Max Gaukler <development@maxgaukler.de> | 2018-11-08 17:18:20 +0000 |
| commit | 79d82382b3ea1b7d77e3a47a96a786557588787a (patch) | |
| tree | e2729fa6bb00d24ac6140cafabb9cf9b94ffa01b /src/live_effects | |
| parent | Implement the remaining vector effects properties. (diff) | |
| download | inkscape-79d82382b3ea1b7d77e3a47a96a786557588787a.tar.gz inkscape-79d82382b3ea1b7d77e3a47a96a786557588787a.zip | |
Clarify licenses
- add license headers to everything
- convert a few files from public domain or LGPL2.1+ to GPL2+
- some archaeology to clarify which files are from which library
Diffstat (limited to 'src/live_effects')
180 files changed, 438 insertions, 276 deletions
diff --git a/src/live_effects/CMakeLists.txt b/src/live_effects/CMakeLists.txt index b0afa14f4..84fdd5fa9 100644 --- a/src/live_effects/CMakeLists.txt +++ b/src/live_effects/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later set(live_effects_SRC effect.cpp lpe-angle_bisector.cpp diff --git a/src/live_effects/effect-enum.h b/src/live_effects/effect-enum.h index 493e3bd8c..80d38c759 100644 --- a/src/live_effects/effect-enum.h +++ b/src/live_effects/effect-enum.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_ENUM_H #define INKSCAPE_LIVEPATHEFFECT_ENUM_H /* * Inkscape::LivePathEffect::EffectType * -* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "util/enums.h" diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 4c18e3124..a54f9007d 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/live_effects/effect.h b/src/live_effects/effect.h index cb3ee0afc..ae0913f2c 100644 --- a/src/live_effects/effect.h +++ b/src/live_effects/effect.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_H #define INKSCAPE_LIVEPATHEFFECT_H /* * Copyright (C) Johan Engelen 2007-2012 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/ustring.h> diff --git a/src/live_effects/lpe-angle_bisector.cpp b/src/live_effects/lpe-angle_bisector.cpp index f7c7928c6..723c0c404 100644 --- a/src/live_effects/lpe-angle_bisector.cpp +++ b/src/live_effects/lpe-angle_bisector.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Maximilian Albert <maximilian.albert@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) Authors 2007-2012 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-angle_bisector.h" diff --git a/src/live_effects/lpe-angle_bisector.h b/src/live_effects/lpe-angle_bisector.h index a35f5b370..b780fcee7 100644 --- a/src/live_effects/lpe-angle_bisector.h +++ b/src/live_effects/lpe-angle_bisector.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_ANGLE_BISECTOR_H #define INKSCAPE_LPE_ANGLE_BISECTOR_H @@ -8,7 +9,7 @@ * * Copyright (C) Authors 2007-2012 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-attach-path.cpp b/src/live_effects/lpe-attach-path.cpp index c50341f79..e266b0a0f 100644 --- a/src/live_effects/lpe-attach-path.cpp +++ b/src/live_effects/lpe-attach-path.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cmath> diff --git a/src/live_effects/lpe-attach-path.h b/src/live_effects/lpe-attach-path.h index bed209426..fc8d95c99 100644 --- a/src/live_effects/lpe-attach-path.h +++ b/src/live_effects/lpe-attach-path.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_ATTACH_PATH_H #define INKSCAPE_LPE_ATTACH_PATH_H @@ -6,7 +7,7 @@ * * Copyright (C) Ted Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-bendpath.cpp b/src/live_effects/lpe-bendpath.cpp index 6ff40be26..6f4dcf6c3 100644 --- a/src/live_effects/lpe-bendpath.cpp +++ b/src/live_effects/lpe-bendpath.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Steren Giannini 2008 <steren.giannini@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-bendpath.h" diff --git a/src/live_effects/lpe-bendpath.h b/src/live_effects/lpe-bendpath.h index e8f1b40ca..146687ab9 100644 --- a/src/live_effects/lpe-bendpath.h +++ b/src/live_effects/lpe-bendpath.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_BENDPATH_H #define INKSCAPE_LPE_BENDPATH_H @@ -7,7 +8,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Steren Giannini 2008 <steren.giannini@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-bool.cpp b/src/live_effects/lpe-bool.cpp index a76463742..6ff27b0aa 100644 --- a/src/live_effects/lpe-bool.cpp +++ b/src/live_effects/lpe-bool.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Boolean operation live path effect * * Copyright (C) 2016-2017 Michael Soegtrop * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/live_effects/lpe-bool.h b/src/live_effects/lpe-bool.h index 7742dca3f..627d3194b 100644 --- a/src/live_effects/lpe-bool.h +++ b/src/live_effects/lpe-bool.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Boolean operation live path effect * * Copyright (C) 2016 Michael Soegtrop * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_BOOL_H diff --git a/src/live_effects/lpe-bounding-box.cpp b/src/live_effects/lpe-bounding-box.cpp index b7b2e596d..106ba2415 100644 --- a/src/live_effects/lpe-bounding-box.cpp +++ b/src/live_effects/lpe-bounding-box.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-bounding-box.h" diff --git a/src/live_effects/lpe-bounding-box.h b/src/live_effects/lpe-bounding-box.h index 4b3d14f9c..c5230b4dc 100644 --- a/src/live_effects/lpe-bounding-box.h +++ b/src/live_effects/lpe-bounding-box.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_BOUNDING_BOX_H #define INKSCAPE_LPE_BOUNDING_BOX_H @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-bspline.cpp b/src/live_effects/lpe-bspline.cpp index 77c5ae66c..e6d4315e3 100644 --- a/src/live_effects/lpe-bspline.cpp +++ b/src/live_effects/lpe-bspline.cpp @@ -1,5 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> #include "live_effects/lpe-bspline.h" diff --git a/src/live_effects/lpe-bspline.h b/src/live_effects/lpe-bspline.h index a1c91d512..7aebb0826 100644 --- a/src/live_effects/lpe-bspline.h +++ b/src/live_effects/lpe-bspline.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_BSPLINE_H #define INKSCAPE_LPE_BSPLINE_H /* * Inkscape::LPEBSpline * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-circle_3pts.cpp b/src/live_effects/lpe-circle_3pts.cpp index 2f601fb00..7982abdf1 100644 --- a/src/live_effects/lpe-circle_3pts.cpp +++ b/src/live_effects/lpe-circle_3pts.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE "Circle through 3 points" implementation */ @@ -9,7 +10,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-circle_3pts.h" diff --git a/src/live_effects/lpe-circle_3pts.h b/src/live_effects/lpe-circle_3pts.h index bf2c26c7c..bf89b9fad 100644 --- a/src/live_effects/lpe-circle_3pts.h +++ b/src/live_effects/lpe-circle_3pts.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_CIRCLE_3PTS_H #define INKSCAPE_LPE_CIRCLE_3PTS_H @@ -12,7 +13,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-circle_with_radius.cpp b/src/live_effects/lpe-circle_with_radius.cpp index 99ade0da1..1a6b3a803 100644 --- a/src/live_effects/lpe-circle_with_radius.cpp +++ b/src/live_effects/lpe-circle_with_radius.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * LPE effect that draws a circle based on two points and a radius. @@ -8,7 +9,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-circle_with_radius.h" diff --git a/src/live_effects/lpe-circle_with_radius.h b/src/live_effects/lpe-circle_with_radius.h index 18215ae9b..dc9a8b9b6 100644 --- a/src/live_effects/lpe-circle_with_radius.h +++ b/src/live_effects/lpe-circle_with_radius.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief LPE effect that draws a circle based on two points and a radius */ @@ -6,7 +7,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_CIRCLE_WITH_RADIUS_H diff --git a/src/live_effects/lpe-clone-original.cpp b/src/live_effects/lpe-clone-original.cpp index 54b7dd090..2ce860061 100644 --- a/src/live_effects/lpe-clone-original.cpp +++ b/src/live_effects/lpe-clone-original.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-clone-original.h" diff --git a/src/live_effects/lpe-clone-original.h b/src/live_effects/lpe-clone-original.h index 0518ab16e..bf5fa8d73 100644 --- a/src/live_effects/lpe-clone-original.h +++ b/src/live_effects/lpe-clone-original.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_CLONE_ORIGINAL_H #define INKSCAPE_LPE_CLONE_ORIGINAL_H @@ -6,7 +7,7 @@ * * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-constructgrid.cpp b/src/live_effects/lpe-constructgrid.cpp index 4759dde5f..e7586191d 100644 --- a/src/live_effects/lpe-constructgrid.cpp +++ b/src/live_effects/lpe-constructgrid.cpp @@ -1,13 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE Construct Grid implementation */ /* * Authors: * Johan Engelen -* -* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-constructgrid.h" diff --git a/src/live_effects/lpe-constructgrid.h b/src/live_effects/lpe-constructgrid.h index b074a5c63..5865402dd 100644 --- a/src/live_effects/lpe-constructgrid.h +++ b/src/live_effects/lpe-constructgrid.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_CONSTRUCTGRID_H #define INKSCAPE_LPE_CONSTRUCTGRID_H @@ -8,10 +9,10 @@ /* * Authors: * Johan Engelen -* -* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-copy_rotate.cpp b/src/live_effects/lpe-copy_rotate.cpp index f74e76211..aff0cdb83 100644 --- a/src/live_effects/lpe-copy_rotate.cpp +++ b/src/live_effects/lpe-copy_rotate.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <copy_rotate> implementation */ @@ -8,7 +9,7 @@ * Jabiertxo Arraiza Cenoz <jabier.arraiza@marker.es> * Copyright (C) Authors 2007-2012 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-copy_rotate.h b/src/live_effects/lpe-copy_rotate.h index ae0d95779..e742f547d 100644 --- a/src/live_effects/lpe-copy_rotate.h +++ b/src/live_effects/lpe-copy_rotate.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_COPY_ROTATE_H #define INKSCAPE_LPE_COPY_ROTATE_H @@ -11,7 +12,7 @@ * * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-curvestitch.cpp b/src/live_effects/lpe-curvestitch.cpp index d5947be4d..0d0e37392 100644 --- a/src/live_effects/lpe-curvestitch.cpp +++ b/src/live_effects/lpe-curvestitch.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE Curve Stitching implementation, used as an example for a base starting class * when implementing new LivePathEffects. @@ -6,10 +7,10 @@ /* * Authors: * Johan Engelen -* -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/scalar.h" diff --git a/src/live_effects/lpe-curvestitch.h b/src/live_effects/lpe-curvestitch.h index e59c91889..ad40a08fa 100644 --- a/src/live_effects/lpe-curvestitch.h +++ b/src/live_effects/lpe-curvestitch.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_CURVESTITCH_H #define INKSCAPE_LPE_CURVESTITCH_H @@ -8,10 +9,10 @@ /* * Authors: * Johan Engelen -* -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-dash-stroke.cpp b/src/live_effects/lpe-dash-stroke.cpp index dd30d05a4..e55fdae7f 100644 --- a/src/live_effects/lpe-dash-stroke.cpp +++ b/src/live_effects/lpe-dash-stroke.cpp @@ -1,5 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-dash-stroke.h" #include "2geom/pathvector.h" diff --git a/src/live_effects/lpe-dash-stroke.h b/src/live_effects/lpe-dash-stroke.h index c84bd1960..3bc64d0cd 100644 --- a/src/live_effects/lpe-dash-stroke.h +++ b/src/live_effects/lpe-dash-stroke.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_DASH_STROKE_H #define INKSCAPE_LPE_DASH_STROKE_H /* * Inkscape::LPEDashStroke * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-dynastroke.cpp b/src/live_effects/lpe-dynastroke.cpp index 276fd10df..52b09fe04 100644 --- a/src/live_effects/lpe-dynastroke.cpp +++ b/src/live_effects/lpe-dynastroke.cpp @@ -1,13 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <dynastroke> implementation */ /* * Authors: * JF Barraud -* -* Copyright (C) JF Barraud 2007 <jf.barraud@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) JF Barraud 2007 <jf.barraud@gmail.com> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-dynastroke.h" diff --git a/src/live_effects/lpe-dynastroke.h b/src/live_effects/lpe-dynastroke.h index 8362746a0..ae1c511b2 100644 --- a/src/live_effects/lpe-dynastroke.h +++ b/src/live_effects/lpe-dynastroke.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_DYNASTROKE_H #define INKSCAPE_LPE_DYNASTROKE_H @@ -11,7 +12,7 @@ * * Copyright (C) JF Barraud 2008 <jf.barraud@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-ellipse_5pts.cpp b/src/live_effects/lpe-ellipse_5pts.cpp index 5f89644f5..29288f8a8 100644 --- a/src/live_effects/lpe-ellipse_5pts.cpp +++ b/src/live_effects/lpe-ellipse_5pts.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE "Ellipse through 5 points" implementation */ @@ -8,7 +9,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-ellipse_5pts.h" diff --git a/src/live_effects/lpe-ellipse_5pts.h b/src/live_effects/lpe-ellipse_5pts.h index 8b9eabc0e..843a9c41f 100644 --- a/src/live_effects/lpe-ellipse_5pts.h +++ b/src/live_effects/lpe-ellipse_5pts.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_ELLIPSE_5PTS_H #define INKSCAPE_LPE_ELLIPSE_5PTS_H @@ -11,7 +12,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-embrodery-stitch-ordering.cpp b/src/live_effects/lpe-embrodery-stitch-ordering.cpp index 6d788870f..5761c4701 100644 --- a/src/live_effects/lpe-embrodery-stitch-ordering.cpp +++ b/src/live_effects/lpe-embrodery-stitch-ordering.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Sub-path Ordering functions for embroidery stitch LPE (Implementation) * * Copyright (C) 2016 Michael Soegtrop * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-embrodery-stitch-ordering.h" diff --git a/src/live_effects/lpe-embrodery-stitch-ordering.h b/src/live_effects/lpe-embrodery-stitch-ordering.h index c5c71e50c..af0f7adcc 100644 --- a/src/live_effects/lpe-embrodery-stitch-ordering.h +++ b/src/live_effects/lpe-embrodery-stitch-ordering.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Sub-path Ordering functions for embroidery stitch LPE * * Copyright (C) 2016 Michael Soegtrop * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_EMBRODERY_STITCH_ORDERING_H diff --git a/src/live_effects/lpe-embrodery-stitch.cpp b/src/live_effects/lpe-embrodery-stitch.cpp index 00d1928d7..6a0818db6 100644 --- a/src/live_effects/lpe-embrodery-stitch.cpp +++ b/src/live_effects/lpe-embrodery-stitch.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Embroidery stitch live path effect (Implementation) * * Copyright (C) 2016 Michael Soegtrop * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/scalar.h" diff --git a/src/live_effects/lpe-embrodery-stitch.h b/src/live_effects/lpe-embrodery-stitch.h index 271ef553d..47403b26c 100644 --- a/src/live_effects/lpe-embrodery-stitch.h +++ b/src/live_effects/lpe-embrodery-stitch.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Embroidery stitch live path effect * * Copyright (C) 2016 Michael Soegtrop * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_EMBRODERY_STITCH_H diff --git a/src/live_effects/lpe-envelope.cpp b/src/live_effects/lpe-envelope.cpp index 6fc9084f8..6b94352b1 100644 --- a/src/live_effects/lpe-envelope.cpp +++ b/src/live_effects/lpe-envelope.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Steren Giannini 2008 <steren.giannini@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-envelope.h" diff --git a/src/live_effects/lpe-envelope.h b/src/live_effects/lpe-envelope.h index 877750559..c9fb8bb45 100644 --- a/src/live_effects/lpe-envelope.h +++ b/src/live_effects/lpe-envelope.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_ENVELOPE_H #define INKSCAPE_LPE_ENVELOPE_H @@ -6,7 +7,7 @@ * * Copyright (C) Steren Giannini 2008 <steren.giannini@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-extrude.cpp b/src/live_effects/lpe-extrude.cpp index 53ecc8dfd..8cc9b7468 100644 --- a/src/live_effects/lpe-extrude.cpp +++ b/src/live_effects/lpe-extrude.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * LPE effect for extruding paths (making them "3D"). @@ -8,7 +9,7 @@ * * Copyright (C) 2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-extrude.h" diff --git a/src/live_effects/lpe-extrude.h b/src/live_effects/lpe-extrude.h index 34a8681a7..d666138b0 100644 --- a/src/live_effects/lpe-extrude.h +++ b/src/live_effects/lpe-extrude.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief LPE effect for extruding paths (making them "3D"). */ @@ -6,7 +7,7 @@ * * Copyright (C) 2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_EXTRUDE_H diff --git a/src/live_effects/lpe-fill-between-many.cpp b/src/live_effects/lpe-fill-between-many.cpp index 223bc631e..4f1ae553b 100644 --- a/src/live_effects/lpe-fill-between-many.cpp +++ b/src/live_effects/lpe-fill-between-many.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/live_effects/lpe-fill-between-many.h b/src/live_effects/lpe-fill-between-many.h index 1a56b8701..833fb45da 100644 --- a/src/live_effects/lpe-fill-between-many.h +++ b/src/live_effects/lpe-fill-between-many.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_FILL_BETWEEN_MANY_H #define INKSCAPE_LPE_FILL_BETWEEN_MANY_H @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-fill-between-strokes.cpp b/src/live_effects/lpe-fill-between-strokes.cpp index 68abe52c7..3a59f6858 100644 --- a/src/live_effects/lpe-fill-between-strokes.cpp +++ b/src/live_effects/lpe-fill-between-strokes.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-fill-between-strokes.h" diff --git a/src/live_effects/lpe-fill-between-strokes.h b/src/live_effects/lpe-fill-between-strokes.h index 18ba28fe3..bcb5f16a1 100644 --- a/src/live_effects/lpe-fill-between-strokes.h +++ b/src/live_effects/lpe-fill-between-strokes.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_FILL_BETWEEN_STROKES_H #define INKSCAPE_LPE_FILL_BETWEEN_STROKES_H @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp index ad489042b..0574b5b4b 100644 --- a/src/live_effects/lpe-fillet-chamfer.cpp +++ b/src/live_effects/lpe-fillet-chamfer.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author(s): * Jabiertxo Arraiza Cenoz <jabier.arraiza@marker.es> @@ -5,7 +6,7 @@ * Copyright (C) 2014 Author(s) * * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-fillet-chamfer.h" diff --git a/src/live_effects/lpe-fillet-chamfer.h b/src/live_effects/lpe-fillet-chamfer.h index cb8a859fc..68ea6d57a 100644 --- a/src/live_effects/lpe-fillet-chamfer.h +++ b/src/live_effects/lpe-fillet-chamfer.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_FILLET_CHAMFER_H #define INKSCAPE_LPE_FILLET_CHAMFER_H @@ -9,7 +10,7 @@ * * Jabiertxof:Thanks to all people help me * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-gears.cpp b/src/live_effects/lpe-gears.cpp index 4566869fe..f1e287704 100644 --- a/src/live_effects/lpe-gears.cpp +++ b/src/live_effects/lpe-gears.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright 2006 Michael G. Sloan <mgsloan@gmail.com> * Copyright 2006 Aaron Spike <aaron@ekips.org> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-gears.h" diff --git a/src/live_effects/lpe-gears.h b/src/live_effects/lpe-gears.h index 8d54a699e..eb5ec8a2c 100644 --- a/src/live_effects/lpe-gears.h +++ b/src/live_effects/lpe-gears.h @@ -1,14 +1,15 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_GEARS_H #define INKSCAPE_LPE_GEARS_H /* * Inkscape::LPEGears * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + * * - * Released under GNU GPL, read the file 'COPYING' for more information -* -* */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-interpolate.cpp b/src/live_effects/lpe-interpolate.cpp index c3aff543a..bded3433e 100644 --- a/src/live_effects/lpe-interpolate.cpp +++ b/src/live_effects/lpe-interpolate.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE interpolate implementation */ @@ -7,7 +8,7 @@ * * Copyright (C) Johan Engelen 2007-2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-interpolate.h" diff --git a/src/live_effects/lpe-interpolate.h b/src/live_effects/lpe-interpolate.h index 21c6f9ac8..4d0755034 100644 --- a/src/live_effects/lpe-interpolate.h +++ b/src/live_effects/lpe-interpolate.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_INTERPOLATE_H #define INKSCAPE_LPE_INTERPOLATE_H @@ -11,7 +12,7 @@ * * Copyright (C) Johan Engelen 2007-2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-interpolate_points.cpp b/src/live_effects/lpe-interpolate_points.cpp index 937b92837..d1e94a392 100644 --- a/src/live_effects/lpe-interpolate_points.cpp +++ b/src/live_effects/lpe-interpolate_points.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE interpolate_points implementation * Interpolates between knots of the input path. @@ -8,7 +9,7 @@ * * Copyright (C) Johan Engelen 2014 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-interpolate_points.h" diff --git a/src/live_effects/lpe-interpolate_points.h b/src/live_effects/lpe-interpolate_points.h index fd78f07b0..9b563cc44 100644 --- a/src/live_effects/lpe-interpolate_points.h +++ b/src/live_effects/lpe-interpolate_points.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_INTERPOLATEPOINTS_H #define INKSCAPE_LPE_INTERPOLATEPOINTS_H @@ -11,7 +12,7 @@ * * Copyright (C) Johan Engelen 2014 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-jointype.cpp b/src/live_effects/lpe-jointype.cpp index 3b233fb51..ad3fcb9f6 100644 --- a/src/live_effects/lpe-jointype.cpp +++ b/src/live_effects/lpe-jointype.cpp @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: -* -* Liam P White -* -* Copyright (C) 2014 Authors -* -* Released under GNU GPL v2+, read the file 'COPYING' for more information -*/ + * + * Liam P White + * + * Copyright (C) 2014 Authors + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #include "live_effects/parameter/enum.h" #include "helper/geom-pathstroke.h" diff --git a/src/live_effects/lpe-jointype.h b/src/live_effects/lpe-jointype.h index 5f73dc4e7..5ea6445a5 100644 --- a/src/live_effects/lpe-jointype.h +++ b/src/live_effects/lpe-jointype.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later
/* Authors:
* Liam P White
*
diff --git a/src/live_effects/lpe-knot.cpp b/src/live_effects/lpe-knot.cpp index 951be285c..f16c11bb2 100644 --- a/src/live_effects/lpe-knot.cpp +++ b/src/live_effects/lpe-knot.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * LPE knot effect implementation. @@ -9,7 +10,7 @@ * * Copyright (C) 2007-2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "display/curve.h" diff --git a/src/live_effects/lpe-knot.h b/src/live_effects/lpe-knot.h index 89a357ff1..6768d7906 100644 --- a/src/live_effects/lpe-knot.h +++ b/src/live_effects/lpe-knot.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE knot effect implementation, see lpe-knot.cpp. */ @@ -7,7 +8,7 @@ * * Copyright (C) Authors 2007-2012 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_KNOT_H diff --git a/src/live_effects/lpe-lattice.cpp b/src/live_effects/lpe-lattice.cpp index 223afa4cd..3dcc703fe 100644 --- a/src/live_effects/lpe-lattice.cpp +++ b/src/live_effects/lpe-lattice.cpp @@ -1,6 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <lattice> implementation - + */ /* * Authors: @@ -8,10 +9,10 @@ * Steren Giannini * No� Falzon * Victor Navez -* -* Copyright (C) 2007-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) 2007-2008 Authors + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-lattice.h" diff --git a/src/live_effects/lpe-lattice.h b/src/live_effects/lpe-lattice.h index ba47c25e4..1d81355a9 100644 --- a/src/live_effects/lpe-lattice.h +++ b/src/live_effects/lpe-lattice.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_LATTICE_H #define INKSCAPE_LPE_LATTICE_H @@ -11,10 +12,10 @@ * Steren Giannini * Noé Falzon * Victor Navez -* -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-lattice2.cpp b/src/live_effects/lpe-lattice2.cpp index 79cb1e32a..befda50c2 100644 --- a/src/live_effects/lpe-lattice2.cpp +++ b/src/live_effects/lpe-lattice2.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <lattice2> implementation @@ -10,10 +11,10 @@ * Victor Navez * ~suv * Jabiertxo Arraiza -* -* Copyright (C) 2007-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) 2007-2008 Authors + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-lattice2.h b/src/live_effects/lpe-lattice2.h index f51ece4cd..319a0dc02 100644 --- a/src/live_effects/lpe-lattice2.h +++ b/src/live_effects/lpe-lattice2.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_LATTICE2_H #define INKSCAPE_LPE_LATTICE2_H @@ -13,10 +14,10 @@ * Victor Navez * ~suv * Jabiertxo Arraiza -* -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-line_segment.cpp b/src/live_effects/lpe-line_segment.cpp index 535fc2f47..5c24aa9be 100644 --- a/src/live_effects/lpe-line_segment.cpp +++ b/src/live_effects/lpe-line_segment.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <line_segment> implementation */ @@ -8,7 +9,7 @@ * * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-line_segment.h" diff --git a/src/live_effects/lpe-line_segment.h b/src/live_effects/lpe-line_segment.h index bde36f2ee..c8d3080f2 100644 --- a/src/live_effects/lpe-line_segment.h +++ b/src/live_effects/lpe-line_segment.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_LINE_SEGMENT_H #define INKSCAPE_LPE_LINE_SEGMENT_H @@ -11,7 +12,7 @@ * * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-measure-segments.cpp b/src/live_effects/lpe-measure-segments.cpp index 3e241d077..fccce1fc6 100644 --- a/src/live_effects/lpe-measure-segments.cpp +++ b/src/live_effects/lpe-measure-segments.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author(s): * Jabiertxo Arraiza Cenoz <jabier.arraiza@marker.es> @@ -6,7 +7,7 @@ * https://github.com/Rutzmoser/inkscape_dimensioning * Copyright (C) 2014 Author(s) - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpeobject.h" diff --git a/src/live_effects/lpe-measure-segments.h b/src/live_effects/lpe-measure-segments.h index 6d6afae30..4aa62dacc 100644 --- a/src/live_effects/lpe-measure-segments.h +++ b/src/live_effects/lpe-measure-segments.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_MEASURE_SEGMENTS_H #define INKSCAPE_LPE_MEASURE_SEGMENTS_H @@ -7,7 +8,7 @@ * * Copyright (C) 2014 Author(s) * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-mirror_symmetry.cpp b/src/live_effects/lpe-mirror_symmetry.cpp index ae205dfc0..0635a271f 100644 --- a/src/live_effects/lpe-mirror_symmetry.cpp +++ b/src/live_effects/lpe-mirror_symmetry.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <mirror_symmetry> implementation: mirrors a path with respect to a given line. */ @@ -11,7 +12,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilin Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-mirror_symmetry.h b/src/live_effects/lpe-mirror_symmetry.h index 4ebf878ef..875602c05 100644 --- a/src/live_effects/lpe-mirror_symmetry.h +++ b/src/live_effects/lpe-mirror_symmetry.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_MIRROR_SYMMETRY_H #define INKSCAPE_LPE_MIRROR_SYMMETRY_H @@ -13,7 +14,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilin Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-offset.cpp b/src/live_effects/lpe-offset.cpp index 2b2b87281..e8a1e7df7 100644 --- a/src/live_effects/lpe-offset.cpp +++ b/src/live_effects/lpe-offset.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <offset> implementation */ @@ -10,7 +11,7 @@ * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * Copyright (C) Jabierto Arraiza 2015 <jabier.arraiza@marker.es> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" @@ -31,7 +32,7 @@ #include "knotholder.h" #include "knot.h" #include <algorithm> -//this is only to flatten nonzero fillrule +// this is only to flatten nonzero fillrule #include "livarot/Path.h" #include "livarot/Shape.h" diff --git a/src/live_effects/lpe-offset.h b/src/live_effects/lpe-offset.h index b7303d7ab..82fecbc93 100644 --- a/src/live_effects/lpe-offset.h +++ b/src/live_effects/lpe-offset.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_OFFSET_H #define INKSCAPE_LPE_OFFSET_H @@ -13,7 +14,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpegroupbbox.h" diff --git a/src/live_effects/lpe-parallel.cpp b/src/live_effects/lpe-parallel.cpp index f136d19ba..1abf76af8 100644 --- a/src/live_effects/lpe-parallel.cpp +++ b/src/live_effects/lpe-parallel.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <parallel> implementation */ @@ -8,7 +9,7 @@ * Copyright (C) Johan Engelen 2007-2012 <j.b.c.engelen@alumnus.utwente.nl> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-parallel.h" diff --git a/src/live_effects/lpe-parallel.h b/src/live_effects/lpe-parallel.h index 1decf3046..0a2f65e80 100644 --- a/src/live_effects/lpe-parallel.h +++ b/src/live_effects/lpe-parallel.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_PARALLEL_H #define INKSCAPE_LPE_PARALLEL_H @@ -12,7 +13,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-path_length.cpp b/src/live_effects/lpe-path_length.cpp index b9a5282b2..3a4ca88f7 100644 --- a/src/live_effects/lpe-path_length.cpp +++ b/src/live_effects/lpe-path_length.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <path_length> implementation. */ @@ -8,7 +9,7 @@ * * Copyright (C) 2007-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-path_length.h" diff --git a/src/live_effects/lpe-path_length.h b/src/live_effects/lpe-path_length.h index ba61279c2..115bf5ca1 100644 --- a/src/live_effects/lpe-path_length.h +++ b/src/live_effects/lpe-path_length.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_PATH_LENGTH_H #define INKSCAPE_LPE_PATH_LENGTH_H @@ -11,7 +12,7 @@ * * Copyright (C) 2007-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-patternalongpath.cpp b/src/live_effects/lpe-patternalongpath.cpp index 41b0b144a..a89dd6bba 100644 --- a/src/live_effects/lpe-patternalongpath.cpp +++ b/src/live_effects/lpe-patternalongpath.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cmath> diff --git a/src/live_effects/lpe-patternalongpath.h b/src/live_effects/lpe-patternalongpath.h index 8148bc140..a5831afa0 100644 --- a/src/live_effects/lpe-patternalongpath.h +++ b/src/live_effects/lpe-patternalongpath.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_PATTERN_ALONG_PATH_H #define INKSCAPE_LPE_PATTERN_ALONG_PATH_H /* * Inkscape::LPEPatternAlongPath * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-perp_bisector.cpp b/src/live_effects/lpe-perp_bisector.cpp index 48a7f5278..6194d2b1b 100644 --- a/src/live_effects/lpe-perp_bisector.cpp +++ b/src/live_effects/lpe-perp_bisector.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <perp_bisector> implementation. */ @@ -9,7 +10,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilin Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-perp_bisector.h" #include "display/curve.h" diff --git a/src/live_effects/lpe-perp_bisector.h b/src/live_effects/lpe-perp_bisector.h index 5604bef45..4d09f8860 100644 --- a/src/live_effects/lpe-perp_bisector.h +++ b/src/live_effects/lpe-perp_bisector.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_PERP_BISECTOR_H #define INKSCAPE_LPE_PERP_BISECTOR_H @@ -12,7 +13,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilin Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-perspective-envelope.cpp b/src/live_effects/lpe-perspective-envelope.cpp index 24b0e8b01..b0ca8e521 100644 --- a/src/live_effects/lpe-perspective-envelope.cpp +++ b/src/live_effects/lpe-perspective-envelope.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <perspective-envelope> implementation @@ -11,7 +12,7 @@ * * Copyright (C) 2007-2014 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-perspective-envelope.h b/src/live_effects/lpe-perspective-envelope.h index 6d0e4a9c4..f042e3d67 100644 --- a/src/live_effects/lpe-perspective-envelope.h +++ b/src/live_effects/lpe-perspective-envelope.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_PERSPECTIVE_ENVELOPE_H #define INKSCAPE_LPE_PERSPECTIVE_ENVELOPE_H @@ -14,7 +15,7 @@ * * Copyright (C) 2007-2014 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-perspective_path.cpp b/src/live_effects/lpe-perspective_path.cpp index a31d1319b..533efa741 100644 --- a/src/live_effects/lpe-perspective_path.cpp +++ b/src/live_effects/lpe-perspective_path.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * LPE perspective path effect implementation. @@ -8,7 +9,7 @@ * * Copyright (C) 2007-2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-perspective_path.h b/src/live_effects/lpe-perspective_path.h index b2de8be0a..d050ce93b 100644 --- a/src/live_effects/lpe-perspective_path.h +++ b/src/live_effects/lpe-perspective_path.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief LPE perspective path effect implementation */ @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_PERSPECTIVE_PATH_H diff --git a/src/live_effects/lpe-powerclip.cpp b/src/live_effects/lpe-powerclip.cpp index c27824938..c710de00f 100644 --- a/src/live_effects/lpe-powerclip.cpp +++ b/src/live_effects/lpe-powerclip.cpp @@ -1,5 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-powerclip.h" #include "live_effects/lpeobject.h" diff --git a/src/live_effects/lpe-powerclip.h b/src/live_effects/lpe-powerclip.h index 2e67cbcd9..ac196a399 100644 --- a/src/live_effects/lpe-powerclip.h +++ b/src/live_effects/lpe-powerclip.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_POWERCLIP_H #define INKSCAPE_LPE_POWERCLIP_H /* * Inkscape::LPEPowerClip * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-powermask.cpp b/src/live_effects/lpe-powermask.cpp index 6df0770a9..d35148425 100644 --- a/src/live_effects/lpe-powermask.cpp +++ b/src/live_effects/lpe-powermask.cpp @@ -1,5 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-powermask.h" #include "live_effects/lpeobject.h" diff --git a/src/live_effects/lpe-powermask.h b/src/live_effects/lpe-powermask.h index 15533299d..660e349af 100644 --- a/src/live_effects/lpe-powermask.h +++ b/src/live_effects/lpe-powermask.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_POWERMASK_H #define INKSCAPE_LPE_POWERMASK_H /* * Inkscape::LPEPowerMask * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" #include "live_effects/parameter/bool.h" diff --git a/src/live_effects/lpe-powerstroke-interpolators.h b/src/live_effects/lpe-powerstroke-interpolators.h index 33c587a53..4828a0bbb 100644 --- a/src/live_effects/lpe-powerstroke-interpolators.h +++ b/src/live_effects/lpe-powerstroke-interpolators.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Interpolators for lists of points. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2010-2011 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_POWERSTROKE_INTERPOLATORS_H diff --git a/src/live_effects/lpe-powerstroke.cpp b/src/live_effects/lpe-powerstroke.cpp index c20476922..37e91ab42 100644 --- a/src/live_effects/lpe-powerstroke.cpp +++ b/src/live_effects/lpe-powerstroke.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * PowerStroke LPE implementation. Creates curves with modifiable stroke width. @@ -7,7 +8,7 @@ * * Copyright (C) 2010-2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-powerstroke.h" diff --git a/src/live_effects/lpe-powerstroke.h b/src/live_effects/lpe-powerstroke.h index d41f5672b..21b024581 100644 --- a/src/live_effects/lpe-powerstroke.h +++ b/src/live_effects/lpe-powerstroke.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief PowerStroke LPE effect, see lpe-powerstroke.cpp. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2010-2011 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_POWERSTROKE_H diff --git a/src/live_effects/lpe-pts2ellipse.cpp b/src/live_effects/lpe-pts2ellipse.cpp index 2df3b2001..e1c87f2dd 100644 --- a/src/live_effects/lpe-pts2ellipse.cpp +++ b/src/live_effects/lpe-pts2ellipse.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE "Points to Ellipse" implementation */ @@ -8,7 +9,7 @@ * * Copyright (C) Markus Schwienbacher 2013 <mschwienbacher@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-pts2ellipse.h" diff --git a/src/live_effects/lpe-pts2ellipse.h b/src/live_effects/lpe-pts2ellipse.h index 9b8ba4658..f9fd90109 100644 --- a/src/live_effects/lpe-pts2ellipse.h +++ b/src/live_effects/lpe-pts2ellipse.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_PTS_TO_ELLIPSE_H #define INKSCAPE_LPE_PTS_TO_ELLIPSE_H @@ -11,7 +12,7 @@ * * Copyright (C) Markus Schwienbacher 2013 <mschwienbacher@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-recursiveskeleton.cpp b/src/live_effects/lpe-recursiveskeleton.cpp index 75a08c250..b21738855 100644 --- a/src/live_effects/lpe-recursiveskeleton.cpp +++ b/src/live_effects/lpe-recursiveskeleton.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Inspired by Hofstadter's 'Goedel Escher Bach', chapter V. @@ -7,7 +8,7 @@ * * Copyright (C) 2007-2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-recursiveskeleton.h" diff --git a/src/live_effects/lpe-recursiveskeleton.h b/src/live_effects/lpe-recursiveskeleton.h index 9745454b7..1347befd4 100644 --- a/src/live_effects/lpe-recursiveskeleton.h +++ b/src/live_effects/lpe-recursiveskeleton.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief see lpe-recursiveskeleton.cpp. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2007-2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_RECURSIVESKELETON_H diff --git a/src/live_effects/lpe-rough-hatches.cpp b/src/live_effects/lpe-rough-hatches.cpp index 80dbbc54e..de62b263d 100644 --- a/src/live_effects/lpe-rough-hatches.cpp +++ b/src/live_effects/lpe-rough-hatches.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE Curve Stitching implementation, used as an example for a base starting class * when implementing new LivePathEffects. @@ -6,10 +7,10 @@ /* * Authors: * JF Barraud. -* -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/scalar.h" diff --git a/src/live_effects/lpe-rough-hatches.h b/src/live_effects/lpe-rough-hatches.h index 08e763d97..ea4b0c326 100644 --- a/src/live_effects/lpe-rough-hatches.h +++ b/src/live_effects/lpe-rough-hatches.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_ROUGH_HATCHES_H #define INKSCAPE_LPE_ROUGH_HATCHES_H @@ -11,7 +12,7 @@ * * Copyright (C) JF Barraud 2008. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-roughen.cpp b/src/live_effects/lpe-roughen.cpp index de3ccef25..9008230d4 100644 --- a/src/live_effects/lpe-roughen.cpp +++ b/src/live_effects/lpe-roughen.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Roughen LPE implementation. Creates roughen paths. @@ -10,7 +11,7 @@ * * Copyright (C) 2014 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-roughen.h b/src/live_effects/lpe-roughen.h index 5e989766d..3426b810a 100644 --- a/src/live_effects/lpe-roughen.h +++ b/src/live_effects/lpe-roughen.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Roughen LPE effect, see lpe-roughen.cpp. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2014 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_ROUGHEN_H diff --git a/src/live_effects/lpe-ruler.cpp b/src/live_effects/lpe-ruler.cpp index 8063f0cf3..0b7443de2 100644 --- a/src/live_effects/lpe-ruler.cpp +++ b/src/live_effects/lpe-ruler.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <ruler> implementation, see lpe-ruler.cpp. */ @@ -8,7 +9,7 @@ * * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-ruler.h" diff --git a/src/live_effects/lpe-ruler.h b/src/live_effects/lpe-ruler.h index 15194f562..37667172c 100644 --- a/src/live_effects/lpe-ruler.h +++ b/src/live_effects/lpe-ruler.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_RULER_H #define INKSCAPE_LPE_RULER_H @@ -12,7 +13,7 @@ * * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/enum.h" diff --git a/src/live_effects/lpe-show_handles.cpp b/src/live_effects/lpe-show_handles.cpp index aa4b363f9..ccf0f80dd 100644 --- a/src/live_effects/lpe-show_handles.cpp +++ b/src/live_effects/lpe-show_handles.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Jabier Arraiza Cenoz -* -* Copyright (C) Jabier Arraiza Cenoz 2014 <jabier.arraiza@marker.es> - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Copyright (C) Jabier Arraiza Cenoz 2014 <jabier.arraiza@marker.es> + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-show_handles.h b/src/live_effects/lpe-show_handles.h index 0ea9c142f..865034ebc 100644 --- a/src/live_effects/lpe-show_handles.h +++ b/src/live_effects/lpe-show_handles.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_SHOW_HANDLES_H #define INKSCAPE_LPE_SHOW_HANDLES_H /* * Authors: * Jabier Arraiza Cenoz -* -* Copyright (C) Jabier Arraiza Cenoz 2014 <jabier.arraiza@marker.es> - * Released under GNU GPL, read the file 'COPYING' for more information + * + * Copyright (C) Jabier Arraiza Cenoz 2014 <jabier.arraiza@marker.es> + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "helper/geom-nodetype.h" #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-simplify.cpp b/src/live_effects/lpe-simplify.cpp index bcd0e1009..d589f16d1 100644 --- a/src/live_effects/lpe-simplify.cpp +++ b/src/live_effects/lpe-simplify.cpp @@ -1,5 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-simplify.h b/src/live_effects/lpe-simplify.h index 29f9ac07b..2477e97cf 100644 --- a/src/live_effects/lpe-simplify.h +++ b/src/live_effects/lpe-simplify.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_SIMPLIFY_H #define INKSCAPE_LPE_SIMPLIFY_H /* * Inkscape::LPESimplify * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" #include "live_effects/parameter/togglebutton.h" diff --git a/src/live_effects/lpe-skeleton.cpp b/src/live_effects/lpe-skeleton.cpp index 266ba2204..302a6a294 100644 --- a/src/live_effects/lpe-skeleton.cpp +++ b/src/live_effects/lpe-skeleton.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Minimal dummy LPE effect implementation, used as an example for a base @@ -15,7 +16,7 @@ * * Copyright (C) 2007-2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-skeleton.h" diff --git a/src/live_effects/lpe-skeleton.h b/src/live_effects/lpe-skeleton.h index 5487a6b67..57d6d7373 100644 --- a/src/live_effects/lpe-skeleton.h +++ b/src/live_effects/lpe-skeleton.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Minimal LPE effect, see lpe-skeleton.cpp. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2007-2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_SKELETON_H diff --git a/src/live_effects/lpe-sketch.cpp b/src/live_effects/lpe-sketch.cpp index 4ddc56803..7d0a4a505 100644 --- a/src/live_effects/lpe-sketch.cpp +++ b/src/live_effects/lpe-sketch.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * LPE sketch effect implementation. @@ -8,7 +9,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-sketch.h" diff --git a/src/live_effects/lpe-sketch.h b/src/live_effects/lpe-sketch.h index 7d50020b3..4d34088d0 100644 --- a/src/live_effects/lpe-sketch.h +++ b/src/live_effects/lpe-sketch.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * @brief LPE sketch effect implementation, see lpe-sketch.cpp. */ @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_SKETCH_H diff --git a/src/live_effects/lpe-spiro.cpp b/src/live_effects/lpe-spiro.cpp index 9d0c9476f..06173d011 100644 --- a/src/live_effects/lpe-spiro.cpp +++ b/src/live_effects/lpe-spiro.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #define INKSCAPE_LPE_SPIRO_C /* - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-spiro.h" diff --git a/src/live_effects/lpe-spiro.h b/src/live_effects/lpe-spiro.h index 31a35720d..9b1ae76c3 100644 --- a/src/live_effects/lpe-spiro.h +++ b/src/live_effects/lpe-spiro.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_SPIRO_H #define INKSCAPE_LPE_SPIRO_H /* * Inkscape::LPESpiro * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-tangent_to_curve.cpp b/src/live_effects/lpe-tangent_to_curve.cpp index 38410d45e..3a9454b5b 100644 --- a/src/live_effects/lpe-tangent_to_curve.cpp +++ b/src/live_effects/lpe-tangent_to_curve.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Implementation of tangent-to-curve LPE. */ @@ -10,7 +11,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-tangent_to_curve.h" diff --git a/src/live_effects/lpe-tangent_to_curve.h b/src/live_effects/lpe-tangent_to_curve.h index 575a54c7d..32cacd1c4 100644 --- a/src/live_effects/lpe-tangent_to_curve.h +++ b/src/live_effects/lpe-tangent_to_curve.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_TANGENT_TO_CURVE_H #define INKSCAPE_LPE_TANGENT_TO_CURVE_H @@ -13,7 +14,7 @@ * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-taperstroke.cpp b/src/live_effects/lpe-taperstroke.cpp index 63225d745..db1d36cbb 100644 --- a/src/live_effects/lpe-taperstroke.cpp +++ b/src/live_effects/lpe-taperstroke.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Taper Stroke path effect, provided as an alternative to Power Strokes @@ -8,7 +9,7 @@ * * Copyright (C) 2014 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-taperstroke.h" diff --git a/src/live_effects/lpe-taperstroke.h b/src/live_effects/lpe-taperstroke.h index 518f7a1d0..a5e18646e 100644 --- a/src/live_effects/lpe-taperstroke.h +++ b/src/live_effects/lpe-taperstroke.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Taper Stroke path effect (meant as a replacement for using Power Strokes for tapering) */ @@ -5,7 +6,7 @@ * Liam P White <inkscapebrony@gmail.com> * Copyright (C) 2014 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_LPE_TAPERSTROKE_H diff --git a/src/live_effects/lpe-test-doEffect-stack.cpp b/src/live_effects/lpe-test-doEffect-stack.cpp index d02a26fe4..ffe507e34 100644 --- a/src/live_effects/lpe-test-doEffect-stack.cpp +++ b/src/live_effects/lpe-test-doEffect-stack.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-test-doEffect-stack.h" diff --git a/src/live_effects/lpe-test-doEffect-stack.h b/src/live_effects/lpe-test-doEffect-stack.h index 3b1916d7b..1103e8931 100644 --- a/src/live_effects/lpe-test-doEffect-stack.h +++ b/src/live_effects/lpe-test-doEffect-stack.h @@ -1,16 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_DOEFFECT_STACK_H #define INKSCAPE_LPE_DOEFFECT_STACK_H /* * Inkscape::LPEdoEffectStackTest * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + * + * This effect is to test whether running up and down the doEffect stack does not change the original-d too much. + * i.e. for this effect, the output should match more or less exactly with the input. * - * Released under GNU GPL, read the file 'COPYING' for more information -* -* This effect is to test whether running up and down the doEffect stack does not change the original-d too much. -* i.e. for this effect, the output should match more or less exactly with the input. -* */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-text_label.cpp b/src/live_effects/lpe-text_label.cpp index b2845930c..aa50296ea 100644 --- a/src/live_effects/lpe-text_label.cpp +++ b/src/live_effects/lpe-text_label.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE <text_label> implementation */ @@ -8,7 +9,7 @@ * * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-text_label.h" diff --git a/src/live_effects/lpe-text_label.h b/src/live_effects/lpe-text_label.h index d399f40ac..61fff9a1c 100644 --- a/src/live_effects/lpe-text_label.h +++ b/src/live_effects/lpe-text_label.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_TEXT_LABEL_H #define INKSCAPE_LPE_TEXT_LABEL_H @@ -11,7 +12,7 @@ * * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-transform_2pts.cpp b/src/live_effects/lpe-transform_2pts.cpp index eac52943a..640e1b146 100644 --- a/src/live_effects/lpe-transform_2pts.cpp +++ b/src/live_effects/lpe-transform_2pts.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * LPE "Transform through 2 points" implementation */ @@ -7,7 +8,7 @@ * Jabier Arraiza Cenoz<jabier.arraiza@marker.es> * * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/lpe-transform_2pts.h b/src/live_effects/lpe-transform_2pts.h index ca04ae589..3975a24ff 100644 --- a/src/live_effects/lpe-transform_2pts.h +++ b/src/live_effects/lpe-transform_2pts.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_TRANSFORM_2PTS_H #define INKSCAPE_LPE_TRANSFORM_2PTS_H @@ -10,7 +11,7 @@ * * * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpe-vonkoch.cpp b/src/live_effects/lpe-vonkoch.cpp index 33db7c14a..f52645849 100644 --- a/src/live_effects/lpe-vonkoch.cpp +++ b/src/live_effects/lpe-vonkoch.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) JF Barraud 2007 <jf.barraud@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-vonkoch.h" diff --git a/src/live_effects/lpe-vonkoch.h b/src/live_effects/lpe-vonkoch.h index 6ff5b6ae3..724425395 100644 --- a/src/live_effects/lpe-vonkoch.h +++ b/src/live_effects/lpe-vonkoch.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPE_VONKOCH_H #define INKSCAPE_LPE_VONKOCH_H @@ -6,7 +7,7 @@ * * Copyright (C) JF Barraud 2007 <jf.barraud@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/effect.h" diff --git a/src/live_effects/lpegroupbbox.cpp b/src/live_effects/lpegroupbbox.cpp index a87baf4b4..bc2f63017 100644 --- a/src/live_effects/lpegroupbbox.cpp +++ b/src/live_effects/lpegroupbbox.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Steren Giannini 2008 <steren.giannini@gmail.com> * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "document.h" diff --git a/src/live_effects/lpegroupbbox.h b/src/live_effects/lpegroupbbox.h index de20138c9..8c71151d8 100644 --- a/src/live_effects/lpegroupbbox.h +++ b/src/live_effects/lpegroupbbox.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LPEGROUPBBOX_H #define INKSCAPE_LPEGROUPBBOX_H @@ -6,7 +7,7 @@ * * Copyright (C) Steren Giannini 2008 <steren.giannini@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPLPEItem; diff --git a/src/live_effects/lpeobject-reference.cpp b/src/live_effects/lpeobject-reference.cpp index 6b04b4c67..cd3e243d3 100644 --- a/src/live_effects/lpeobject-reference.cpp +++ b/src/live_effects/lpeobject-reference.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * The reference corresponding to the inkscape:live-effect attribute * * Copyright (C) 2007 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpeobject-reference.h" diff --git a/src/live_effects/lpeobject-reference.h b/src/live_effects/lpeobject-reference.h index a86c10eee..a57d01a70 100644 --- a/src/live_effects/lpeobject-reference.h +++ b/src/live_effects/lpeobject-reference.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_LPEOBJECT_REFERENCE_H #define SEEN_LPEOBJECT_REFERENCE_H @@ -6,7 +7,7 @@ * * Copyright (C) 2007 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <sigc++/sigc++.h> diff --git a/src/live_effects/lpeobject.cpp b/src/live_effects/lpeobject.cpp index d3c49a366..cb3e4ff55 100644 --- a/src/live_effects/lpeobject.cpp +++ b/src/live_effects/lpeobject.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007-2008 <j.b.c.engelen@utwente.nl> * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpeobject.h" diff --git a/src/live_effects/lpeobject.h b/src/live_effects/lpeobject.h index 631aba68a..50eac73cf 100644 --- a/src/live_effects/lpeobject.h +++ b/src/live_effects/lpeobject.h @@ -1,14 +1,15 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_OBJECT_H #define INKSCAPE_LIVEPATHEFFECT_OBJECT_H /* * Inkscape::LivePathEffect * -* Copyright (C) Johan Engelen 2007-2008 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007-2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ - + #include "effect-enum.h" diff --git a/src/live_effects/parameter/array.cpp b/src/live_effects/parameter/array.cpp index 3c1498fc3..376252f45 100644 --- a/src/live_effects/parameter/array.cpp +++ b/src/live_effects/parameter/array.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/array.h" diff --git a/src/live_effects/parameter/array.h b/src/live_effects/parameter/array.h index 3f4baf8b4..6768bbade 100644 --- a/src/live_effects/parameter/array.h +++ b/src/live_effects/parameter/array.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ARRAY_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ARRAY_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/live_effects/parameter/bool.cpp b/src/live_effects/parameter/bool.cpp index 9b8435941..26d27ebab 100644 --- a/src/live_effects/parameter/bool.cpp +++ b/src/live_effects/parameter/bool.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-widget.h" diff --git a/src/live_effects/parameter/bool.h b/src/live_effects/parameter/bool.h index dd474302c..557511979 100644 --- a/src/live_effects/parameter/bool.h +++ b/src/live_effects/parameter/bool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_BOOL_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_BOOL_H @@ -6,7 +7,7 @@ * * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/colorpicker.cpp b/src/live_effects/parameter/colorpicker.cpp index ec2b18389..8163b3672 100644 --- a/src/live_effects/parameter/colorpicker.cpp +++ b/src/live_effects/parameter/colorpicker.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/parameter/colorpicker.h b/src/live_effects/parameter/colorpicker.h index 7fa1556a3..e24704718 100644 --- a/src/live_effects/parameter/colorpicker.h +++ b/src/live_effects/parameter/colorpicker.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_COLOR_BUTTON_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_COLOR_BUTTON_H @@ -5,7 +6,7 @@ * Inkscape::LivePathEffectParameters * * Authors: - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> #include "live_effects/parameter/parameter.h" diff --git a/src/live_effects/parameter/enum.h b/src/live_effects/parameter/enum.h index cc100ad98..dcf42f258 100644 --- a/src/live_effects/parameter/enum.h +++ b/src/live_effects/parameter/enum.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ENUM_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ENUM_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-enums.h" diff --git a/src/live_effects/parameter/fontbutton.cpp b/src/live_effects/parameter/fontbutton.cpp index 49edb850a..07bc5d6ab 100644 --- a/src/live_effects/parameter/fontbutton.cpp +++ b/src/live_effects/parameter/fontbutton.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/live_effects/parameter/fontbutton.h b/src/live_effects/parameter/fontbutton.h index 27c982159..1a5cc2966 100644 --- a/src/live_effects/parameter/fontbutton.h +++ b/src/live_effects/parameter/fontbutton.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_FONT_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_FONT_H @@ -5,7 +6,7 @@ * Inkscape::LivePathEffectParameters * * Authors: - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> #include "live_effects/parameter/parameter.h" diff --git a/src/live_effects/parameter/hidden.cpp b/src/live_effects/parameter/hidden.cpp index fd062d277..5e1462aa4 100644 --- a/src/live_effects/parameter/hidden.cpp +++ b/src/live_effects/parameter/hidden.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) jabiertxof 2017 <jabier.arraiza@marker.es> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> @@ -7,7 +8,7 @@ * Maximilian Albert * Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/live_effects/parameter/hidden.h b/src/live_effects/parameter/hidden.h index ecc5039b2..6429e9ef8 100644 --- a/src/live_effects/parameter/hidden.h +++ b/src/live_effects/parameter/hidden.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_HIDDEN_H #define INKSCAPE_LIVEPATHEFFECT_HIDDEN_H @@ -12,7 +13,7 @@ * Copyright (C) jabiertxof 2017 <jabier.arraiza@marker.es> * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/parameter.h" diff --git a/src/live_effects/parameter/item-reference.cpp b/src/live_effects/parameter/item-reference.cpp index 6540245d3..cea49010d 100644 --- a/src/live_effects/parameter/item-reference.cpp +++ b/src/live_effects/parameter/item-reference.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * The reference corresponding to href of LPE Item parameter. * * Copyright (C) 2008 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/item-reference.h" diff --git a/src/live_effects/parameter/item-reference.h b/src/live_effects/parameter/item-reference.h index 50d4f9dab..64aaac0a7 100644 --- a/src/live_effects/parameter/item-reference.h +++ b/src/live_effects/parameter/item-reference.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_LPE_ITEM_REFERENCE_H #define SEEN_LPE_ITEM_REFERENCE_H @@ -6,7 +7,7 @@ * Authors: Johan Engelen * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "object/uri-references.h" diff --git a/src/live_effects/parameter/item.cpp b/src/live_effects/parameter/item.cpp index 5da934da6..bc467d843 100644 --- a/src/live_effects/parameter/item.cpp +++ b/src/live_effects/parameter/item.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/item.h" diff --git a/src/live_effects/parameter/item.h b/src/live_effects/parameter/item.h index 315f7618d..a09db38ff 100644 --- a/src/live_effects/parameter/item.h +++ b/src/live_effects/parameter/item.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ITEM_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ITEM_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/message.cpp b/src/live_effects/parameter/message.cpp index 37fe7d145..f00e17817 100644 --- a/src/live_effects/parameter/message.cpp +++ b/src/live_effects/parameter/message.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/live_effects/parameter/message.h b/src/live_effects/parameter/message.h index 28cd9642b..439cce8f2 100644 --- a/src/live_effects/parameter/message.h +++ b/src/live_effects/parameter/message.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_MESSAGE_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_MESSAGE_H @@ -5,7 +6,7 @@ * Inkscape::LivePathEffectParameters * * Authors: - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> #include "live_effects/parameter/parameter.h" diff --git a/src/live_effects/parameter/originalitem.cpp b/src/live_effects/parameter/originalitem.cpp index 35a504dfc..e71306b75 100644 --- a/src/live_effects/parameter/originalitem.cpp +++ b/src/live_effects/parameter/originalitem.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/live_effects/parameter/originalitem.h b/src/live_effects/parameter/originalitem.h index d070161ac..26729f6de 100644 --- a/src/live_effects/parameter/originalitem.h +++ b/src/live_effects/parameter/originalitem.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_ITEM_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_ITEM_H /* * Inkscape::LiveItemEffectParameters * -* Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> + * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/item.h" diff --git a/src/live_effects/parameter/originalitemarray.cpp b/src/live_effects/parameter/originalitemarray.cpp index 0138f1558..c6943d9da 100644 --- a/src/live_effects/parameter/originalitemarray.cpp +++ b/src/live_effects/parameter/originalitemarray.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/originalitemarray.h" diff --git a/src/live_effects/parameter/originalitemarray.h b/src/live_effects/parameter/originalitemarray.h index 968aeaff0..f55e180f3 100644 --- a/src/live_effects/parameter/originalitemarray.h +++ b/src/live_effects/parameter/originalitemarray.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINALITEMARRAY_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINALITEMARRAY_H @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/live_effects/parameter/originalpath.cpp b/src/live_effects/parameter/originalpath.cpp index 61ca1e1ff..dd292fee3 100644 --- a/src/live_effects/parameter/originalpath.cpp +++ b/src/live_effects/parameter/originalpath.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/live_effects/parameter/originalpath.h b/src/live_effects/parameter/originalpath.h index 4432d063d..7bdc23c92 100644 --- a/src/live_effects/parameter/originalpath.h +++ b/src/live_effects/parameter/originalpath.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_PATH_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_PATH_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> + * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/path.h" diff --git a/src/live_effects/parameter/originalpatharray.cpp b/src/live_effects/parameter/originalpatharray.cpp index 8716c4228..1618ace0f 100644 --- a/src/live_effects/parameter/originalpatharray.cpp +++ b/src/live_effects/parameter/originalpatharray.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/originalpatharray.h" diff --git a/src/live_effects/parameter/originalpatharray.h b/src/live_effects/parameter/originalpatharray.h index 23a41215f..3af27136b 100644 --- a/src/live_effects/parameter/originalpatharray.h +++ b/src/live_effects/parameter/originalpatharray.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINALPATHARRAY_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINALPATHARRAY_H @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/live_effects/parameter/parameter.cpp b/src/live_effects/parameter/parameter.cpp index 158db91a4..a6f8021b3 100644 --- a/src/live_effects/parameter/parameter.cpp +++ b/src/live_effects/parameter/parameter.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/live_effects/parameter/parameter.h b/src/live_effects/parameter/parameter.h index db2b7e13f..82250f652 100644 --- a/src/live_effects/parameter/parameter.h +++ b/src/live_effects/parameter/parameter.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/ustring.h> diff --git a/src/live_effects/parameter/path-reference.cpp b/src/live_effects/parameter/path-reference.cpp index b169e5b32..c3ce3d5d3 100644 --- a/src/live_effects/parameter/path-reference.cpp +++ b/src/live_effects/parameter/path-reference.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * The reference corresponding to href of LPE Path parameter. * * Copyright (C) 2008 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/path-reference.h" diff --git a/src/live_effects/parameter/path-reference.h b/src/live_effects/parameter/path-reference.h index 8f8382b80..0b3319490 100644 --- a/src/live_effects/parameter/path-reference.h +++ b/src/live_effects/parameter/path-reference.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_LPE_PATH_REFERENCE_H #define SEEN_LPE_PATH_REFERENCE_H @@ -6,7 +7,7 @@ * Authors: Johan Engelen * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "object/uri-references.h" diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp index ce06627c9..c38f7d37c 100644 --- a/src/live_effects/parameter/path.cpp +++ b/src/live_effects/parameter/path.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Abhishek Sharma * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/path.h" diff --git a/src/live_effects/parameter/path.h b/src/live_effects/parameter/path.h index 99c073997..3b34a6f90 100644 --- a/src/live_effects/parameter/path.h +++ b/src/live_effects/parameter/path.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_PATH_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_PATH_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/point.cpp b/src/live_effects/parameter/point.cpp index 3cdfd72c0..561e43495 100644 --- a/src/live_effects/parameter/point.cpp +++ b/src/live_effects/parameter/point.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/point.h" diff --git a/src/live_effects/parameter/point.h b/src/live_effects/parameter/point.h index 7c620f502..9cccb9400 100644 --- a/src/live_effects/parameter/point.h +++ b/src/live_effects/parameter/point.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_POINT_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_POINT_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/powerstrokepointarray.cpp b/src/live_effects/parameter/powerstrokepointarray.cpp index 6cc204bb9..08e17ed93 100644 --- a/src/live_effects/parameter/powerstrokepointarray.cpp +++ b/src/live_effects/parameter/powerstrokepointarray.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/dialog/lpe-powerstroke-properties.h" diff --git a/src/live_effects/parameter/powerstrokepointarray.h b/src/live_effects/parameter/powerstrokepointarray.h index e21945e7c..51c94ae7a 100644 --- a/src/live_effects/parameter/powerstrokepointarray.h +++ b/src/live_effects/parameter/powerstrokepointarray.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_POWERSTROKE_POINT_ARRAY_H #define INKSCAPE_LIVEPATHEFFECT_POWERSTROKE_POINT_ARRAY_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/random.cpp b/src/live_effects/parameter/random.cpp index fe99285a0..176790c65 100644 --- a/src/live_effects/parameter/random.cpp +++ b/src/live_effects/parameter/random.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-widget.h" diff --git a/src/live_effects/parameter/random.h b/src/live_effects/parameter/random.h index ae037083a..0b902befe 100644 --- a/src/live_effects/parameter/random.h +++ b/src/live_effects/parameter/random.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_RANDOM_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_RANDOM_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> + * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/parameter.h" diff --git a/src/live_effects/parameter/satellitesarray.cpp b/src/live_effects/parameter/satellitesarray.cpp index 6a46204c9..aa1644597 100644 --- a/src/live_effects/parameter/satellitesarray.cpp +++ b/src/live_effects/parameter/satellitesarray.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author(s): * Jabiertxo Arraiza Cenoz <jabier.arraiza@marker.es> * * Copyright (C) 2014 Author(s) - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "knotholder.h" diff --git a/src/live_effects/parameter/satellitesarray.h b/src/live_effects/parameter/satellitesarray.h index 459b499d3..d9f6ddbad 100644 --- a/src/live_effects/parameter/satellitesarray.h +++ b/src/live_effects/parameter/satellitesarray.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_SATELLITES_ARRAY_H #define INKSCAPE_LIVEPATHEFFECT_SATELLITES_ARRAY_H @@ -8,14 +9,14 @@ * Also to ScislaC for pointing me to the idea * Also su_v for his constructive feedback and time * To Nathan Hurst for his review and help on refactor - * and finally to Liam P. White for his big help on coding, + * and finally to Liam P. White for his big help on coding, * that saved me a lot of hours * * * This parameter acts as a bridge from pathVectorSatellites class to serialize it as a LPE * parameter * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/array.h" diff --git a/src/live_effects/parameter/text.cpp b/src/live_effects/parameter/text.cpp index 37ae3a1d7..6f9896981 100644 --- a/src/live_effects/parameter/text.cpp +++ b/src/live_effects/parameter/text.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * @@ -5,7 +6,7 @@ * Maximilian Albert * Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-widget.h" diff --git a/src/live_effects/parameter/text.h b/src/live_effects/parameter/text.h index 6591c54c8..12e6295c0 100644 --- a/src/live_effects/parameter/text.h +++ b/src/live_effects/parameter/text.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_TEXT_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_TEXT_H @@ -10,7 +11,7 @@ * * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/togglebutton.cpp b/src/live_effects/parameter/togglebutton.cpp index c92e1c437..faeb27a55 100644 --- a/src/live_effects/parameter/togglebutton.cpp +++ b/src/live_effects/parameter/togglebutton.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl> * Copyright (C) Jabiertxo Arraiza Cenoz 2014 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-widget.h" diff --git a/src/live_effects/parameter/togglebutton.h b/src/live_effects/parameter/togglebutton.h index 65fb5db34..3cae69f1d 100644 --- a/src/live_effects/parameter/togglebutton.h +++ b/src/live_effects/parameter/togglebutton.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_TOGGLEBUTTON_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_TOGGLEBUTTON_H /* * Copyright (C) Jabiertxo Arraiza Cenoz 2014 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/transformedpoint.cpp b/src/live_effects/parameter/transformedpoint.cpp index d7e42e28b..357ea6958 100644 --- a/src/live_effects/parameter/transformedpoint.cpp +++ b/src/live_effects/parameter/transformedpoint.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-widget.h" diff --git a/src/live_effects/parameter/transformedpoint.h b/src/live_effects/parameter/transformedpoint.h index e732146a8..9046f1b46 100644 --- a/src/live_effects/parameter/transformedpoint.h +++ b/src/live_effects/parameter/transformedpoint.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_TRANSFORMED_POINT_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_TRANSFORMED_POINT_H @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/parameter/unit.cpp b/src/live_effects/parameter/unit.cpp index d6c545f3b..109d7fced 100644 --- a/src/live_effects/parameter/unit.cpp +++ b/src/live_effects/parameter/unit.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-widget.h" diff --git a/src/live_effects/parameter/unit.h b/src/live_effects/parameter/unit.h index 97514248e..a3a78ed4c 100644 --- a/src/live_effects/parameter/unit.h +++ b/src/live_effects/parameter/unit.h @@ -1,12 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_UNIT_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_UNIT_H /* * Inkscape::LivePathEffectParameters * -* Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> + * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/parameter/parameter.h" diff --git a/src/live_effects/parameter/vector.cpp b/src/live_effects/parameter/vector.cpp index f5a156c71..6f689c755 100644 --- a/src/live_effects/parameter/vector.cpp +++ b/src/live_effects/parameter/vector.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/registered-widget.h" diff --git a/src/live_effects/parameter/vector.h b/src/live_effects/parameter/vector.h index 059f706e4..08a2241df 100644 --- a/src/live_effects/parameter/vector.h +++ b/src/live_effects/parameter/vector.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_VECTOR_H #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_VECTOR_H @@ -6,7 +7,7 @@ * * Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib.h> diff --git a/src/live_effects/spiro-converters.cpp b/src/live_effects/spiro-converters.cpp index ee214704c..e0daf6d54 100644 --- a/src/live_effects/spiro-converters.cpp +++ b/src/live_effects/spiro-converters.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later
/* Authors:
* Johan Engelen
*
diff --git a/src/live_effects/spiro-converters.h b/src/live_effects/spiro-converters.h index ec53e085b..98041a22c 100644 --- a/src/live_effects/spiro-converters.h +++ b/src/live_effects/spiro-converters.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef INKSCAPE_SPIRO_CONVERTERS_H #define INKSCAPE_SPIRO_CONVERTERS_H diff --git a/src/live_effects/spiro.cpp b/src/live_effects/spiro.cpp index 008e2ad6a..54bc021c7 100644 --- a/src/live_effects/spiro.cpp +++ b/src/live_effects/spiro.cpp @@ -1,26 +1,14 @@ -/* -Copyright (C) 2007-2012 Authors - -Authors: Raph Levien - Johan Engelen - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. - -*/ -/* C implementation of third-order polynomial spirals. */ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * C implementation of third-order polynomial spirals. + *//* + * Authors: see git history + * Raph Levien + * Johan Engelen + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #include "spiro.h" diff --git a/src/live_effects/spiro.h b/src/live_effects/spiro.h index 3afa06941..3ca1fb87b 100644 --- a/src/live_effects/spiro.h +++ b/src/live_effects/spiro.h @@ -1,26 +1,14 @@ -/* -Copyright (C) 2007-2012 Authors - -Authors: Raph Levien - Johan Engelen - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. - -*/ - +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * C implementation of third-order polynomial spirals. + *//* + * Authors: see git history + * Raph Levien + * Johan Engelen + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef INKSCAPE_SPIRO_H #define INKSCAPE_SPIRO_H |
