diff options
| author | Marc Jeanmougin <marc.jeanmougin@telecom-paristech.fr> | 2018-04-29 22:12:42 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc.jeanmougin@telecom-paristech.fr> | 2018-04-29 22:12:42 +0000 |
| commit | bba4ff6672494fab59286b50f6c645ad62a47e60 (patch) | |
| tree | c357b8add3334ef1df340d4eb433404857c27e7d /src/object/sp-hatch-path.cpp | |
| parent | Fix test (diff) | |
| download | inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.tar.gz inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.zip | |
Fix include order with clang-tidy check llvm-include-order
Diffstat (limited to 'src/object/sp-hatch-path.cpp')
| -rw-r--r-- | src/object/sp-hatch-path.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/object/sp-hatch-path.cpp b/src/object/sp-hatch-path.cpp index 4497b6911..7b4d4834d 100644 --- a/src/object/sp-hatch-path.cpp +++ b/src/object/sp-hatch-path.cpp @@ -12,22 +12,22 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#include <string> #include <2geom/path.h> +#include <string> -#include "svg/svg.h" +#include "attributes.h" #include "display/cairo-utils.h" #include "display/curve.h" #include "display/drawing-context.h" +#include "display/drawing-shape.h" #include "display/drawing-surface.h" #include "display/drawing.h" -#include "display/drawing-shape.h" -#include "helper/geom.h" -#include "attributes.h" #include "document-private.h" -#include "sp-item.h" +#include "helper/geom.h" #include "sp-hatch-path.h" +#include "sp-item.h" #include "svg/css-ostringstream.h" +#include "svg/svg.h" SPHatchPath::SPHatchPath() : offset(), |
