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-item.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-item.cpp')
| -rw-r--r-- | src/object/sp-item.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/object/sp-item.cpp b/src/object/sp-item.cpp index 5ca22cabd..0acbb07be 100644 --- a/src/object/sp-item.cpp +++ b/src/object/sp-item.cpp @@ -20,19 +20,19 @@ #include <glibmm/i18n.h> +#include "attributes.h" #include "bad-uri-exception.h" -#include "svg/svg.h" -#include "print.h" #include "display/drawing-item.h" -#include "attributes.h" #include "document.h" +#include "print.h" +#include "svg/svg.h" -#include "inkscape.h" -#include "desktop.h" -#include "gradient-chemistry.h" -#include "conn-avoid-ref.h" #include "conditions.h" +#include "conn-avoid-ref.h" +#include "desktop.h" #include "filter-chemistry.h" +#include "gradient-chemistry.h" +#include "inkscape.h" #include "sp-clippath.h" #include "sp-desc.h" @@ -40,8 +40,8 @@ #include "sp-item-rm-unsatisfied-cns.h" #include "sp-mask.h" #include "sp-pattern.h" -#include "sp-root.h" #include "sp-rect.h" +#include "sp-root.h" #include "sp-switch.h" #include "sp-text.h" #include "sp-textpath.h" @@ -57,9 +57,9 @@ #include "extract-uri.h" -#include "live_effects/lpeobject.h" #include "live_effects/effect.h" #include "live_effects/lpeobject-reference.h" +#include "live_effects/lpeobject.h" #include "util/units.h" |
