diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2020-05-02 23:09:53 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2020-05-04 08:42:10 +0200 |
commit | e360fb8a316215e6b2d2d27be24b038f0b16a82c (patch) | |
tree | 70fee96187a8de50469f947e9dfe55e0935f2786 /drawinglayer | |
parent | 94d5587e013ba61091d90d6636d0e6f320ac5615 (diff) |
organize includes in vclpixelprocessor2d.cxx
Change-Id: I1590e437946aaa4bd3a8b6a2c47d2ee17d2060a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93386
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/processor2d/vclpixelprocessor2d.cxx | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx index f09c6ad0fd76..bba66e2d4272 100644 --- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx +++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx @@ -19,8 +19,16 @@ #include "vclpixelprocessor2d.hxx" #include "vclhelperbufferdevice.hxx" +#include "helperwrongspellrenderer.hxx" + +#include <sal/log.hxx> +#include <tools/stream.hxx> #include <vcl/BitmapFilterStackBlur.hxx> #include <vcl/outdev.hxx> +#include <vcl/dibtools.hxx> +#include <vcl/hatch.hxx> +#include <basegfx/polygon/b2dpolygontools.hxx> + #include <drawinglayer/primitive2d/drawinglayer_primitivetypes2d.hxx> #include <drawinglayer/primitive2d/Tools.hxx> #include <drawinglayer/primitive2d/textprimitive2d.hxx> @@ -41,25 +49,19 @@ #include <drawinglayer/primitive2d/transformprimitive2d.hxx> #include <drawinglayer/primitive2d/markerarrayprimitive2d.hxx> #include <drawinglayer/primitive2d/glowprimitive2d.hxx> -#include <primitive2d/pointarrayprimitive2d.hxx> #include <drawinglayer/primitive2d/wrongspellprimitive2d.hxx> #include <drawinglayer/primitive2d/controlprimitive2d.hxx> #include <drawinglayer/primitive2d/borderlineprimitive2d.hxx> -#include <com/sun/star/awt/XWindow2.hpp> #include <drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx> #include <drawinglayer/primitive2d/pagepreviewprimitive2d.hxx> -#include "helperwrongspellrenderer.hxx" -#include <primitive2d/fillhatchprimitive2d.hxx> -#include <basegfx/polygon/b2dpolygontools.hxx> -#include <vcl/hatch.hxx> -#include <sal/log.hxx> -#include <com/sun/star/awt/XControl.hpp> #include <drawinglayer/primitive2d/backgroundcolorprimitive2d.hxx> -#include <primitive2d/epsprimitive2d.hxx> #include <drawinglayer/primitive2d/svggradientprimitive2d.hxx> +#include <primitive2d/pointarrayprimitive2d.hxx> +#include <primitive2d/fillhatchprimitive2d.hxx> +#include <primitive2d/epsprimitive2d.hxx> -#include <vcl/dibtools.hxx> -#include <tools/stream.hxx> +#include <com/sun/star/awt/XWindow2.hpp> +#include <com/sun/star/awt/XControl.hpp> using namespace com::sun::star; |