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-namedview.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-namedview.cpp')
| -rw-r--r-- | src/object/sp-namedview.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/object/sp-namedview.cpp b/src/object/sp-namedview.cpp index 59c7129f6..8eef39db3 100644 --- a/src/object/sp-namedview.cpp +++ b/src/object/sp-namedview.cpp @@ -14,28 +14,28 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#include <cstring> -#include <string> #include "event-log.h" #include <2geom/transforms.h> +#include <cstring> +#include <string> -#include "display/canvas-grid.h" -#include "util/units.h" -#include "svg/svg-color.h" -#include "xml/repr.h" #include "attributes.h" -#include "document.h" -#include "document-undo.h" #include "desktop-events.h" +#include "display/canvas-grid.h" +#include "document-undo.h" +#include "document.h" #include "enums.h" +#include "svg/svg-color.h" #include "ui/monitor.h" +#include "util/units.h" +#include "xml/repr.h" +#include "conn-avoid-ref.h" // for defaultConnSpacing. +#include "desktop.h" +#include "preferences.h" #include "sp-guide.h" #include "sp-item-group.h" #include "sp-namedview.h" -#include "preferences.h" -#include "desktop.h" -#include "conn-avoid-ref.h" // for defaultConnSpacing. #include "sp-root.h" #include <gtkmm/window.h> |
