diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-05-04 16:45:37 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-05-04 16:45:37 +0000 |
| commit | 6031728e438feb9457596baae886c803883535e4 (patch) | |
| tree | 312bd8e46bc0cb2581287a72964d21a1eba5133b /src/ui/clipboard.cpp | |
| parent | Rename "Glyphs" dialog to "Unicode Characters" dialog to better reflect what ... (diff) | |
| download | inkscape-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/ui/clipboard.cpp')
| -rw-r--r-- | src/ui/clipboard.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/ui/clipboard.cpp b/src/ui/clipboard.cpp index a5bd0aee0..4f6adec4f 100644 --- a/src/ui/clipboard.cpp +++ b/src/ui/clipboard.cpp @@ -21,42 +21,42 @@ * See the file COPYING for details. */ -#include "ui/clipboard.h" #include <gtkmm/clipboard.h> +#include "ui/clipboard.h" // TODO: reduce header bloat if possible -#include "desktop.h" #include "file.h" // for file_import, used in _pasteImage +#include <glibmm/i18n.h> +#include <glib/gstdio.h> // for g_file_set_contents etc., used in _onGet and paste #include "inkgc/gc-core.h" +#include "xml/repr.h" #include "inkscape.h" #include "io/stringstream.h" -#include "xml/repr.h" -#include <glib/gstdio.h> // for g_file_set_contents etc., used in _onGet and paste -#include <glibmm/i18n.h> +#include "desktop.h" -#include "context-fns.h" #include "desktop-style.h" // for sp_desktop_set_style, used in _pasteStyle -#include "document-private.h" #include "document.h" +#include "document-private.h" +#include "message-stack.h" +#include "context-fns.h" +#include "ui/tools/dropper-tool.h" // used in copy() #include "extension/db.h" // extension database -#include "extension/find_extension_by_mime.h" #include "extension/input.h" #include "extension/output.h" +#include "selection-chemistry.h" +#include <2geom/transforms.h> #include "gradient-drag.h" -#include "helper/png-write.h" -#include "live_effects/lpeobject-reference.h" #include "live_effects/lpeobject.h" +#include "live_effects/lpeobject-reference.h" #include "live_effects/parameter/path.h" -#include "message-stack.h" -#include "path-chemistry.h" -#include "selection-chemistry.h" +#include "ui/tools/text-tool.h" #include "text-editing.h" #include "ui/tools-switch.h" -#include "ui/tools/dropper-tool.h" // used in copy() -#include "ui/tools/text-tool.h" +#include "path-chemistry.h" #include "util/units.h" -#include <2geom/transforms.h> +#include "helper/png-write.h" +#include "extension/find_extension_by_mime.h" #include "object/box3d.h" #include "object/persp3d.h" @@ -72,13 +72,13 @@ #include "object/sp-rect.h" #include "object/sp-root.h" #include "object/sp-shape.h" -#include "object/sp-textpath.h" #include "object/sp-use.h" +#include "object/sp-textpath.h" #include "style.h" +#include "svg/svg.h" // for sp_svg_transform_write, used in _copySelection #include "svg/css-ostringstream.h" // used in copy #include "svg/svg-color.h" -#include "svg/svg.h" // for sp_svg_transform_write, used in _copySelection /// Made up mimetype to represent Gdk::Pixbuf clipboard contents. #define CLIPBOARD_GDK_PIXBUF_TARGET "image/x-gdk-pixbuf" |
