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/display/sp-canvas.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/display/sp-canvas.cpp')
| -rw-r--r-- | src/display/sp-canvas.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/display/sp-canvas.cpp b/src/display/sp-canvas.cpp index c717bc7ae..e930f4b37 100644 --- a/src/display/sp-canvas.cpp +++ b/src/display/sp-canvas.cpp @@ -21,25 +21,25 @@ # include <config.h> #endif +#include <cairomm/region.h> #include <gdkmm/devicemanager.h> #include <gdkmm/display.h> #include <gdkmm/rectangle.h> -#include <cairomm/region.h> -#include "helper/sp-marshal.h" -#include <2geom/rect.h> -#include <2geom/affine.h> -#include "display/sp-canvas.h" -#include "display/sp-canvas-group.h" -#include "display/rendermode.h" -#include "display/cairo-utils.h" -#include "preferences.h" -#include "inkscape.h" -#include "sodipodi-ctrlrect.h" #include "cms-system.h" +#include "color.h" #include "debug/gdk-event-latency-tracker.h" #include "desktop.h" -#include "color.h" +#include "display/cairo-utils.h" +#include "display/rendermode.h" +#include "display/sp-canvas-group.h" +#include "display/sp-canvas.h" +#include "helper/sp-marshal.h" +#include "inkscape.h" +#include "preferences.h" +#include "sodipodi-ctrlrect.h" +#include <2geom/affine.h> +#include <2geom/rect.h> #if GTK_CHECK_VERSION(3,20,0) # include <gdkmm/seat.h> |
