summaryrefslogtreecommitdiffstats
path: root/src/splivarot.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/splivarot.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 '')
-rw-r--r--src/splivarot.cpp40
1 files changed, 23 insertions, 17 deletions
diff --git a/src/splivarot.cpp b/src/splivarot.cpp
index 145feda44..7daaefdfa 100644
--- a/src/splivarot.cpp
+++ b/src/splivarot.cpp
@@ -18,36 +18,42 @@
#include <cstring>
#include <string>
#include <vector>
+
#include <glib.h>
-#include "xml/repr.h"
-#include "svg/svg.h"
-#include "sp-path.h"
-#include "sp-image.h"
-#include "sp-marker.h"
-#include "sp-text.h"
-#include "sp-flowtext.h"
-#include "text-editing.h"
-#include "style.h"
-#include "document.h"
+#include <glibmm/i18n.h>
+
+#include <2geom/svg-path-parser.h> // to get from SVG on boolean to Geom::Path
+#include <2geom/svg-path-writer.h>
+
+#include "splivarot.h"
+
#include "document-undo.h"
+#include "document.h"
#include "layer-model.h"
#include "message-stack.h"
#include "selection.h"
+#include "text-editing.h"
+#include "verbs.h"
-#include <glibmm/i18n.h>
-
-#include "xml/repr-sorting.h"
-#include <2geom/svg-path-writer.h>
#include "helper/geom.h"
#include "livarot/Path.h"
#include "livarot/Shape.h"
-#include "splivarot.h"
-#include "verbs.h"
-#include "2geom/svg-path-parser.h" // to get from SVG on boolean to Geom::Path
+#include "object/sp-flowtext.h"
+#include "object/sp-image.h"
+#include "object/sp-marker.h"
+#include "object/sp-path.h"
+#include "object/sp-text.h"
+#include "style.h"
+
+#include "svg/svg.h"
+
#include "util/units.h" // to get abbr for document units
+#include "xml/repr-sorting.h"
+#include "xml/repr.h"
+
using Inkscape::DocumentUndo;
bool Ancetre(Inkscape::XML::Node *a, Inkscape::XML::Node *who);