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/extension/internal/emf-print.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/extension/internal/emf-print.cpp')
| -rw-r--r-- | src/extension/internal/emf-print.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/extension/internal/emf-print.cpp b/src/extension/internal/emf-print.cpp index 0b005f8da..dedd241a5 100644 --- a/src/extension/internal/emf-print.cpp +++ b/src/extension/internal/emf-print.cpp @@ -26,42 +26,42 @@ # include "config.h" #endif -#include <string.h> -#include <glibmm/miscutils.h> -#include <3rdparty/libuemf/symbol_convert.h> -#include <2geom/sbasis-to-bezier.h> +#include <2geom/curves.h> #include <2geom/path.h> #include <2geom/pathvector.h> #include <2geom/rect.h> -#include <2geom/curves.h> +#include <2geom/sbasis-to-bezier.h> +#include <3rdparty/libuemf/symbol_convert.h> +#include <glibmm/miscutils.h> +#include <string.h> -#include "helper/geom.h" #include "helper/geom-curves.h" +#include "helper/geom.h" #include "util/units.h" #include "inkscape-version.h" -#include "extension/system.h" -#include "extension/print.h" #include "document.h" +#include "extension/print.h" +#include "extension/system.h" #include "path-prefix.h" -#include "object/sp-pattern.h" -#include "object/sp-image.h" +#include "display/cairo-utils.h" +#include "object/sp-clippath.h" #include "object/sp-gradient.h" -#include "object/sp-radial-gradient.h" -#include "object/sp-linear-gradient.h" +#include "object/sp-image.h" #include "object/sp-item.h" +#include "object/sp-linear-gradient.h" +#include "object/sp-pattern.h" +#include "object/sp-radial-gradient.h" #include "object/sp-root.h" #include "object/sp-shape.h" -#include "object/sp-clippath.h" #include "style.h" -#include "display/cairo-utils.h" -#include "splivarot.h" // pieces for union on shapes #include "2geom/svg-path-parser.h" // to get from SVG text to Geom::Path -#include "display/canvas-bpath.h" // for SPWindRule #include "display/cairo-utils.h" // for Inkscape::Pixbuf::PF_CAIRO +#include "display/canvas-bpath.h" // for SPWindRule +#include "splivarot.h" // pieces for union on shapes #include "emf-print.h" |
