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/conn-avoid-ref.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 '')
| -rw-r--r-- | src/conn-avoid-ref.cpp | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/conn-avoid-ref.cpp b/src/conn-avoid-ref.cpp index 5e7942f19..34fe27cd5 100644 --- a/src/conn-avoid-ref.cpp +++ b/src/conn-avoid-ref.cpp @@ -15,26 +15,28 @@ #include <string> #include <iostream> -#include "sp-item.h" -#include "display/curve.h" -#include "2geom/line.h" #include "2geom/convex-hull.h" -#include "svg/stringstream.h" +#include "2geom/line.h" + #include "conn-avoid-ref.h" -#include "sp-conn-end.h" -#include "sp-path.h" -#include "libavoid/router.h" -#include "libavoid/shape.h" -#include "xml/node.h" -#include "document.h" #include "desktop.h" - #include "document-undo.h" -#include "sp-namedview.h" -#include "sp-item-group.h" +#include "document.h" #include "inkscape.h" #include "verbs.h" +#include "display/curve.h" + +#include "libavoid/router.h" +#include "libavoid/shape.h" + +#include "object/sp-namedview.h" +#include "object/sp-shape.h" + +#include "svg/stringstream.h" + +#include "xml/node.h" + using Inkscape::DocumentUndo; using Avoid::Router; |
