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-group.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-group.cpp')
| -rw-r--r-- | src/object/sp-item-group.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/object/sp-item-group.cpp b/src/object/sp-item-group.cpp index 602c4558c..8ea5ad8e2 100644 --- a/src/object/sp-item-group.cpp +++ b/src/object/sp-item-group.cpp @@ -18,42 +18,42 @@ #include <config.h> #endif -#include <glibmm/i18n.h> #include <cstring> +#include <glibmm/i18n.h> #include <string> #include "attributes.h" -#include "document.h" #include "document-undo.h" +#include "document.h" #include "selection-chemistry.h" #include "verbs.h" -#include "display/drawing-group.h" #include "display/curve.h" +#include "display/drawing-group.h" #include "live_effects/effect.h" -#include "live_effects/lpeobject.h" #include "live_effects/lpeobject-reference.h" -#include "svg/svg.h" +#include "live_effects/lpeobject.h" #include "svg/css-ostringstream.h" +#include "svg/svg.h" #include "xml/repr.h" #include "xml/sp-css-attr.h" #include "box3d.h" #include "persp3d.h" +#include "sp-clippath.h" #include "sp-defs.h" +#include "sp-desc.h" +#include "sp-flowtext.h" #include "sp-item-transform.h" -#include "sp-root.h" -#include "sp-rect.h" -#include "sp-offset.h" -#include "sp-clippath.h" #include "sp-mask.h" +#include "sp-offset.h" #include "sp-path.h" -#include "sp-use.h" -#include "sp-title.h" -#include "sp-desc.h" +#include "sp-rect.h" +#include "sp-root.h" #include "sp-switch.h" #include "sp-textpath.h" -#include "sp-flowtext.h" +#include "sp-title.h" +#include "sp-use.h" #include "style.h" using Inkscape::DocumentUndo; |
