summaryrefslogtreecommitdiffstats
path: root/src/trace
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2018-05-04 16:45:37 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2018-05-04 16:45:37 +0000
commit6031728e438feb9457596baae886c803883535e4 (patch)
tree312bd8e46bc0cb2581287a72964d21a1eba5133b /src/trace
parentRename "Glyphs" dialog to "Unicode Characters" dialog to better reflect what ... (diff)
downloadinkscape-6031728e438feb9457596baae886c803883535e4.tar.gz
inkscape-6031728e438feb9457596baae886c803883535e4.zip
Revert "Fix include order with clang-tidy check llvm-include-order"
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
Diffstat (limited to 'src/trace')
-rw-r--r--src/trace/potrace/inkscape-potrace.cpp6
-rw-r--r--src/trace/quantize.cpp4
-rw-r--r--src/trace/siox.cpp6
-rw-r--r--src/trace/trace.cpp18
4 files changed, 17 insertions, 17 deletions
diff --git a/src/trace/potrace/inkscape-potrace.cpp b/src/trace/potrace/inkscape-potrace.cpp
index f9c416961..b438be248 100644
--- a/src/trace/potrace/inkscape-potrace.cpp
+++ b/src/trace/potrace/inkscape-potrace.cpp
@@ -21,17 +21,17 @@
#include <iomanip>
#include "trace/filterset.h"
-#include "trace/imagemap-gdk.h"
#include "trace/quantize.h"
+#include "trace/imagemap-gdk.h"
+#include <inkscape.h>
#include "desktop.h"
#include "message-stack.h"
-#include <inkscape.h>
#include "object/sp-path.h"
-#include "bitmap.h"
#include <svg/path-string.h>
+#include "bitmap.h"
using Glib::ustring;
diff --git a/src/trace/quantize.cpp b/src/trace/quantize.cpp
index 7a085b083..c386c0ee9 100644
--- a/src/trace/quantize.cpp
+++ b/src/trace/quantize.cpp
@@ -11,11 +11,11 @@
#include <cassert>
#include <cstdio>
-#include <new>
#include <stdlib.h>
+#include <new>
-#include "imagemap.h"
#include "pool.h"
+#include "imagemap.h"
#include "quantize.h"
typedef struct Ocnode_def Ocnode;
diff --git a/src/trace/siox.cpp b/src/trace/siox.cpp
index 8bd04c0b9..9df4e561c 100644
--- a/src/trace/siox.cpp
+++ b/src/trace/siox.cpp
@@ -7,11 +7,11 @@
*/
#include "siox.h"
-#include <algorithm>
-#include <cstdlib>
-#include <map>
#include <math.h>
#include <stdarg.h>
+#include <map>
+#include <algorithm>
+#include <cstdlib>
namespace org
diff --git a/src/trace/trace.cpp b/src/trace/trace.cpp
index 94e24dfc2..5595b2544 100644
--- a/src/trace/trace.cpp
+++ b/src/trace/trace.cpp
@@ -14,30 +14,30 @@
#include "trace/potrace/inkscape-potrace.h"
-#include "desktop.h"
#include "inkscape.h"
+#include "desktop.h"
-#include "document-undo.h"
#include "document.h"
+#include "document-undo.h"
#include "message-stack.h"
+#include <glibmm/i18n.h>
+#include <gtkmm/main.h>
#include "selection.h"
-#include "verbs.h"
-#include "xml/attribute-record.h"
#include "xml/repr.h"
+#include "xml/attribute-record.h"
#include <2geom/transforms.h>
-#include <glibmm/i18n.h>
-#include <gtkmm/main.h>
+#include "verbs.h"
#include "display/cairo-utils.h"
-#include "display/drawing-shape.h"
#include "display/drawing.h"
+#include "display/drawing-shape.h"
-#include "object/sp-image.h"
#include "object/sp-item.h"
#include "object/sp-shape.h"
+#include "object/sp-image.h"
-#include "imagemap-gdk.h"
#include "siox.h"
+#include "imagemap-gdk.h"
namespace Inkscape {
namespace Trace {