summaryrefslogtreecommitdiffstats
path: root/src/gradient-chemistry.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
commit267299811df952d08324a39008f52c19641de9e0 (patch)
tree28fef736a52cb7a72119d119be8eb663ad20a77f /src/gradient-chemistry.cpp
parentTranslations: update inkscape.pot (diff)
downloadinkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz
inkscape-267299811df952d08324a39008f52c19641de9e0.zip
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to 'src/gradient-chemistry.cpp')
-rw-r--r--src/gradient-chemistry.cpp34
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;