diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
| commit | 267299811df952d08324a39008f52c19641de9e0 (patch) | |
| tree | 28fef736a52cb7a72119d119be8eb663ad20a77f /src/gradient-chemistry.cpp | |
| parent | Translations: update inkscape.pot (diff) | |
| download | inkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz inkscape-267299811df952d08324a39008f52c19641de9e0.zip | |
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to '')
| -rw-r--r-- | src/gradient-chemistry.cpp | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/src/gradient-chemistry.cpp b/src/gradient-chemistry.cpp index cc676bffe..110aa8b38 100644 --- a/src/gradient-chemistry.cpp +++ b/src/gradient-chemistry.cpp @@ -18,38 +18,40 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#include "widgets/gradient-vector.h" +#include <glibmm/i18n.h> #include <2geom/transforms.h> #include <2geom/bezier-curve.h> #include <2geom/crossing.h> #include <2geom/line.h> -#include "style.h" +#include "desktop-style.h" +#include "desktop.h" #include "document-private.h" #include "document-undo.h" -#include "desktop.h" -#include "desktop-style.h" - -#include "ui/tools/tool-base.h" +#include "gradient-chemistry.h" +#include "gradient-drag.h" #include "selection.h" #include "verbs.h" -#include <glibmm/i18n.h> -#include "sp-gradient-reference.h" -#include "sp-linear-gradient.h" -#include "sp-radial-gradient.h" -#include "sp-mesh-gradient.h" -#include "sp-stop.h" -#include "gradient-drag.h" -#include "gradient-chemistry.h" +#include "object/sp-defs.h" +#include "object/sp-gradient-reference.h" +#include "object/sp-linear-gradient.h" +#include "object/sp-mesh-gradient.h" +#include "object/sp-radial-gradient.h" +#include "object/sp-stop.h" +#include "object/sp-text.h" +#include "object/sp-tspan.h" +#include "style.h" -#include "sp-text.h" -#include "sp-tspan.h" #include "svg/svg.h" #include "svg/svg-color.h" #include "svg/css-ostringstream.h" +#include "ui/tools/tool-base.h" + +#include "widgets/gradient-vector.h" + #define noSP_GR_VERBOSE using Inkscape::DocumentUndo; |
