summaryrefslogtreecommitdiffstats
path: root/src/selection-describer.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/selection-describer.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/selection-describer.cpp')
-rw-r--r--src/selection-describer.cpp22
1 files changed, 13 insertions, 9 deletions
diff --git a/src/selection-describer.cpp b/src/selection-describer.cpp
index 5e7ac7ed3..caa83fb94 100644
--- a/src/selection-describer.cpp
+++ b/src/selection-describer.cpp
@@ -18,18 +18,22 @@
#include <set>
#include <glibmm/i18n.h>
-#include "xml/quote.h"
+
+#include "selection-describer.h"
+
#include "layer-model.h"
#include "selection.h"
-#include "selection-describer.h"
#include "desktop.h"
-#include "sp-textpath.h"
-#include "sp-offset.h"
-#include "sp-flowtext.h"
-#include "sp-use.h"
-#include "sp-symbol.h"
-#include "sp-image.h"
-#include "sp-path.h"
+
+#include "object/sp-flowtext.h"
+#include "object/sp-image.h"
+#include "object/sp-offset.h"
+#include "object/sp-path.h"
+#include "object/sp-symbol.h"
+#include "object/sp-textpath.h"
+#include "object/sp-use.h"
+
+#include "xml/quote.h"
// Returns a list of terms for the items to be used in the statusbar
char* collect_terms (const std::vector<SPItem*> &items)