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/libnrtype | |
| 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/libnrtype')
| -rw-r--r-- | src/libnrtype/FontFactory.cpp | 4 | ||||
| -rw-r--r-- | src/libnrtype/FontInstance.cpp | 4 | ||||
| -rw-r--r-- | src/libnrtype/Layout-TNG-Compute.cpp | 6 | ||||
| -rw-r--r-- | src/libnrtype/Layout-TNG-Input.cpp | 4 | ||||
| -rw-r--r-- | src/libnrtype/Layout-TNG-OutIter.cpp | 6 | ||||
| -rw-r--r-- | src/libnrtype/Layout-TNG-Output.cpp | 12 | ||||
| -rw-r--r-- | src/libnrtype/font-lister.cpp | 6 |
7 files changed, 21 insertions, 21 deletions
diff --git a/src/libnrtype/FontFactory.cpp b/src/libnrtype/FontFactory.cpp index a354d8915..fb7a1cf8c 100644 --- a/src/libnrtype/FontFactory.cpp +++ b/src/libnrtype/FontFactory.cpp @@ -20,16 +20,16 @@ #include <fontconfig/fontconfig.h> +#include <pango/pango-ot.h> #include <pango/pangofc-fontmap.h> #include <pango/pangoft2.h> -#include <pango/pango-ot.h> #include "io/sys.h" #include "util/unordered-containers.h" #include "libnrtype/FontFactory.h" -#include "libnrtype/font-instance.h" #include "libnrtype/OpenTypeUtil.h" +#include "libnrtype/font-instance.h" typedef INK_UNORDERED_MAP<PangoFontDescription*, font_instance*, font_descr_hash, font_descr_equal> FaceMapType; diff --git a/src/libnrtype/FontInstance.cpp b/src/libnrtype/FontInstance.cpp index d55f919f1..65cb619f3 100644 --- a/src/libnrtype/FontInstance.cpp +++ b/src/libnrtype/FontInstance.cpp @@ -28,11 +28,11 @@ #include <glibmm/regex.h> -#include <2geom/pathvector.h> -#include <2geom/path-sink.h> #include "libnrtype/font-glyph.h" #include "libnrtype/font-instance.h" #include "util/unordered-containers.h" +#include <2geom/path-sink.h> +#include <2geom/pathvector.h> #ifndef USE_PANGO_WIN32 diff --git a/src/libnrtype/Layout-TNG-Compute.cpp b/src/libnrtype/Layout-TNG-Compute.cpp index 20b07d84b..d3b49436e 100644 --- a/src/libnrtype/Layout-TNG-Compute.cpp +++ b/src/libnrtype/Layout-TNG-Compute.cpp @@ -9,11 +9,11 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ #include "Layout-TNG.h" -#include "style.h" +#include "Layout-TNG-Scanline-Maker.h" #include "font-instance.h" -#include "svg/svg-length.h" #include "object/sp-object.h" -#include "Layout-TNG-Scanline-Maker.h" +#include "style.h" +#include "svg/svg-length.h" #include <limits> namespace Inkscape { diff --git a/src/libnrtype/Layout-TNG-Input.cpp b/src/libnrtype/Layout-TNG-Input.cpp index 6100fa262..724fc2b17 100644 --- a/src/libnrtype/Layout-TNG-Input.cpp +++ b/src/libnrtype/Layout-TNG-Input.cpp @@ -17,11 +17,11 @@ #define PANGO_ENABLE_ENGINE #endif -#include <gtk/gtk.h> +#include "FontFactory.h" #include "Layout-TNG.h" #include "style.h" #include "svg/svg-length.h" -#include "FontFactory.h" +#include <gtk/gtk.h> namespace Inkscape { diff --git a/src/libnrtype/Layout-TNG-OutIter.cpp b/src/libnrtype/Layout-TNG-OutIter.cpp index 8c29b7dbc..f649e5ddc 100644 --- a/src/libnrtype/Layout-TNG-OutIter.cpp +++ b/src/libnrtype/Layout-TNG-OutIter.cpp @@ -9,12 +9,12 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ #include "Layout-TNG.h" -#include "livarot/Path.h" #include "font-instance.h" +#include "livarot/Path.h" +#include "style.h" #include "svg/svg-length.h" -#include <2geom/transforms.h> #include <2geom/line.h> -#include "style.h" +#include <2geom/transforms.h> namespace Inkscape { namespace Text { diff --git a/src/libnrtype/Layout-TNG-Output.cpp b/src/libnrtype/Layout-TNG-Output.cpp index 884c1a319..717876317 100644 --- a/src/libnrtype/Layout-TNG-Output.cpp +++ b/src/libnrtype/Layout-TNG-Output.cpp @@ -8,19 +8,19 @@ * * Released under GNU GPL, read the file 'COPYING' for more information */ -#include <glib.h> #include "Layout-TNG.h" +#include "display/curve.h" #include "display/drawing-text.h" -#include "style.h" -#include "print.h" +#include "extension/internal/cairo-render-context.h" #include "extension/print.h" -#include "livarot/Path.h" #include "font-instance.h" +#include "livarot/Path.h" +#include "print.h" +#include "style.h" #include "svg/svg-length.h" -#include "extension/internal/cairo-render-context.h" -#include "display/curve.h" #include <2geom/pathvector.h> #include <3rdparty/libuemf/symbol_convert.h> +#include <glib.h> namespace Inkscape { diff --git a/src/libnrtype/font-lister.cpp b/src/libnrtype/font-lister.cpp index 47a260714..acef7318e 100644 --- a/src/libnrtype/font-lister.cpp +++ b/src/libnrtype/font-lister.cpp @@ -8,18 +8,18 @@ #include <libnrtype/font-instance.h> -#include "font-lister.h" #include "FontFactory.h" +#include "font-lister.h" -#include "desktop.h" #include "desktop-style.h" +#include "desktop.h" #include "document.h" #include "inkscape.h" #include "preferences.h" +#include "object/sp-namedview.h" #include "object/sp-object.h" #include "object/sp-root.h" -#include "object/sp-namedview.h" #include "xml/repr.h" |
