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/path-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 'src/path-chemistry.cpp')
| -rw-r--r-- | src/path-chemistry.cpp | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/src/path-chemistry.cpp b/src/path-chemistry.cpp index 41079bc1f..2eb471bb3 100644 --- a/src/path-chemistry.cpp +++ b/src/path-chemistry.cpp @@ -17,28 +17,35 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif + #include <cstring> #include <string> -#include "xml/repr.h" -#include "svg/svg.h" -#include "display/curve.h" + #include <glibmm/i18n.h> -#include "sp-path.h" -#include "sp-text.h" -#include "sp-flowtext.h" -#include "text-editing.h" -#include "style.h" + + #include "desktop.h" -#include "document.h" #include "document-undo.h" +#include "document.h" #include "message-stack.h" -#include "selection.h" - -#include "box3d.h" -#include "selection-chemistry.h" #include "path-chemistry.h" +#include "selection-chemistry.h" +#include "selection.h" +#include "text-editing.h" #include "verbs.h" -#include "object-set.h" + +#include "display/curve.h" + +#include "object/box3d.h" +#include "object/object-set.h" +#include "object/sp-flowtext.h" +#include "object/sp-path.h" +#include "object/sp-text.h" +#include "style.h" + +#include "svg/svg.h" + +#include "xml/repr.h" using Inkscape::DocumentUndo; using Inkscape::ObjectSet; |
