summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/swatches.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc.jeanmougin@telecom-paristech.fr>2018-04-29 22:12:42 +0000
committerMarc Jeanmougin <marc.jeanmougin@telecom-paristech.fr>2018-04-29 22:12:42 +0000
commitbba4ff6672494fab59286b50f6c645ad62a47e60 (patch)
treec357b8add3334ef1df340d4eb433404857c27e7d /src/ui/dialog/swatches.cpp
parentFix test (diff)
downloadinkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.tar.gz
inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.zip
Fix include order with clang-tidy check llvm-include-order
Diffstat (limited to 'src/ui/dialog/swatches.cpp')
-rw-r--r--src/ui/dialog/swatches.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ui/dialog/swatches.cpp b/src/ui/dialog/swatches.cpp
index e57dde639..965ea9952 100644
--- a/src/ui/dialog/swatches.cpp
+++ b/src/ui/dialog/swatches.cpp
@@ -9,52 +9,52 @@
* Released under GNU GPL, read the file 'COPYING' for more information
*/
-#include <map>
#include <algorithm>
#include <iomanip>
+#include <map>
#include <set>
#include "swatches.h"
#include <gtkmm/radiomenuitem.h>
-#include <gtkmm/menu.h>
#include <gtkmm/checkmenuitem.h>
+#include <gtkmm/menu.h>
+#include <gtkmm/menubutton.h>
#include <gtkmm/radiomenuitem.h>
#include <gtkmm/separatormenuitem.h>
-#include <gtkmm/menubutton.h>
+#include <glibmm/fileutils.h>
#include <glibmm/i18n.h>
#include <glibmm/main.h>
-#include <glibmm/timer.h>
-#include <glibmm/fileutils.h>
#include <glibmm/miscutils.h>
+#include <glibmm/timer.h>
#include "color-item.h"
#include "desktop.h"
#include "desktop-style.h"
-#include "document.h"
#include "document-private.h"
#include "document-undo.h"
+#include "document.h"
#include "extension/db.h"
#include "inkscape.h"
-#include "io/sys.h"
#include "io/resource.h"
+#include "io/sys.h"
#include "message-context.h"
#include "path-prefix.h"
+#include "display/cairo-utils.h"
#include "ui/previewholder.h"
#include "widgets/desktop-widget.h"
#include "widgets/gradient-vector.h"
-#include "display/cairo-utils.h"
#include "object/sp-defs.h"
#include "object/sp-gradient-reference.h"
#include "dialog-manager.h"
-#include "verbs.h"
#include "gradient-chemistry.h"
#include "helper/action.h"
+#include "verbs.h"
namespace Inkscape {
namespace UI {