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/system.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/system.cpp')
| -rw-r--r-- | src/extension/system.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/extension/system.cpp b/src/extension/system.cpp index f438d84b9..f35cd559c 100644 --- a/src/extension/system.cpp +++ b/src/extension/system.cpp @@ -22,22 +22,22 @@ #include "ui/interface.h" -#include "system.h" -#include "preferences.h" -#include "extension.h" #include "db.h" -#include "input.h" -#include "output.h" +#include "document-undo.h" #include "effect.h" -#include "patheffect.h" -#include "print.h" +#include "extension.h" #include "implementation/script.h" #include "implementation/xslt.h" -#include "xml/rebase-hrefs.h" -#include "io/sys.h" #include "inkscape.h" -#include "document-undo.h" +#include "input.h" +#include "io/sys.h" #include "loader.h" +#include "output.h" +#include "patheffect.h" +#include "preferences.h" +#include "print.h" +#include "system.h" +#include "xml/rebase-hrefs.h" #include <glibmm/miscutils.h> |
