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/shortcuts.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/shortcuts.cpp')
| -rw-r--r-- | src/shortcuts.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/shortcuts.cpp b/src/shortcuts.cpp index 96008dbeb..1c5ca9215 100644 --- a/src/shortcuts.cpp +++ b/src/shortcuts.cpp @@ -20,32 +20,32 @@ # include "config.h" #endif -#include <vector> #include <cstring> -#include <string> #include <map> +#include <string> +#include <vector> #include "shortcuts.h" #include <gdk/gdkkeysyms.h> #include <gtk/gtk.h> -#include <glibmm/i18n.h> #include <glibmm/convert.h> +#include <glibmm/i18n.h> #include <glibmm/miscutils.h> +#include "desktop.h" +#include "document.h" #include "helper/action.h" -#include "io/sys.h" +#include "inkscape.h" #include "io/resource.h" +#include "io/sys.h" +#include "path-prefix.h" +#include "preferences.h" +#include "ui/dialog/filedialog.h" +#include "ui/tools/tool-base.h" #include "verbs.h" #include "xml/node-iterators.h" #include "xml/repr.h" -#include "document.h" -#include "preferences.h" -#include "ui/tools/tool-base.h" -#include "inkscape.h" -#include "desktop.h" -#include "path-prefix.h" -#include "ui/dialog/filedialog.h" using namespace Inkscape; using namespace Inkscape::IO::Resource; |
