summaryrefslogtreecommitdiffstats
path: root/src/seltrans.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/seltrans.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/seltrans.cpp')
-rw-r--r--src/seltrans.cpp33
1 files changed, 19 insertions, 14 deletions
diff --git a/src/seltrans.cpp b/src/seltrans.cpp
index 141720371..0a341bf83 100644
--- a/src/seltrans.cpp
+++ b/src/seltrans.cpp
@@ -20,31 +20,36 @@
#include <cstring>
#include <string>
-#include <2geom/transforms.h>
#include <gdk/gdkkeysyms.h>
-#include "document.h"
-#include "document-undo.h"
-#include "sp-namedview.h"
-#include "desktop.h"
+#include <glibmm/i18n.h>
+
+#include <2geom/transforms.h>
+
+#include "seltrans.h"
#include "desktop-style.h"
+#include "desktop.h"
+#include "document-undo.h"
+#include "document.h"
#include "knot.h"
#include "message-stack.h"
+#include "mod360.h"
#include "pure-transform.h"
+#include "selection-chemistry.h"
#include "selection.h"
-#include "ui/tools/select-tool.h"
-#include "sp-item-transform.h"
-#include "sp-root.h"
#include "seltrans-handles.h"
-#include "seltrans.h"
-#include "selection-chemistry.h"
#include "verbs.h"
-#include <glibmm/i18n.h>
-#include "display/sp-ctrlline.h"
-#include "display/sodipodi-ctrl.h"
-#include "mod360.h"
+
#include "display/snap-indicator.h"
+#include "display/sodipodi-ctrl.h"
+#include "display/sp-ctrlline.h"
+
+#include "object/sp-item-transform.h"
+#include "object/sp-namedview.h"
+#include "object/sp-root.h"
+
#include "ui/control-manager.h"
+#include "ui/tools/select-tool.h"
using Inkscape::ControlManager;
using Inkscape::DocumentUndo;