diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-12-16 18:54:31 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-12-20 10:31:39 +0100 |
commit | aa7a23f4f71853b7a256435404b7f73ddefc061e (patch) | |
tree | ad1cbe828dc3857ccfbadfdbca2132eadbf17ef1 /svgio/source | |
parent | 8f4087138cb68d8dcdd06853df1a6deb53ee8844 (diff) |
tdf#42949 Fix IWYU warnings in svgio/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I66cde1ea02569cd8244b23be16a5550cac8adf12
Reviewed-on: https://gerrit.libreoffice.org/85237
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'svgio/source')
-rw-r--r-- | svgio/source/svgreader/svgcharacternode.cxx | 1 | ||||
-rw-r--r-- | svgio/source/svgreader/svgcirclenode.cxx | 1 | ||||
-rw-r--r-- | svgio/source/svgreader/svgellipsenode.cxx | 1 | ||||
-rw-r--r-- | svgio/source/svgreader/svgimagenode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svglinenode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgnode.cxx | 1 | ||||
-rw-r--r-- | svgio/source/svgreader/svgpolynode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgrectnode.cxx | 1 | ||||
-rw-r--r-- | svgio/source/svgreader/svgstyleattributes.cxx | 1 | ||||
-rw-r--r-- | svgio/source/svgreader/svgsymbolnode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgtextnode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgtextpathnode.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgtools.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgvisitor.cxx | 3 | ||||
-rw-r--r-- | svgio/source/svguno/xsvgparser.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svguno/xsvgparser.hxx | 1 |
16 files changed, 6 insertions, 20 deletions
diff --git a/svgio/source/svgreader/svgcharacternode.cxx b/svgio/source/svgreader/svgcharacternode.cxx index 2e88862cb2fb..ac91ade8094f 100644 --- a/svgio/source/svgreader/svgcharacternode.cxx +++ b/svgio/source/svgreader/svgcharacternode.cxx @@ -23,7 +23,6 @@ #include <drawinglayer/primitive2d/textprimitive2d.hxx> #include <drawinglayer/primitive2d/textlayoutdevice.hxx> #include <drawinglayer/primitive2d/textbreakuphelper.hxx> -#include <drawinglayer/primitive2d/groupprimitive2d.hxx> #include <drawinglayer/primitive2d/textdecoratedprimitive2d.hxx> namespace svgio diff --git a/svgio/source/svgreader/svgcirclenode.cxx b/svgio/source/svgreader/svgcirclenode.cxx index 3684615691fb..c63ef0866901 100644 --- a/svgio/source/svgreader/svgcirclenode.cxx +++ b/svgio/source/svgreader/svgcirclenode.cxx @@ -20,6 +20,7 @@ #include <svgcirclenode.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> +#include <basegfx/polygon/b2dpolypolygon.hxx> namespace svgio { diff --git a/svgio/source/svgreader/svgellipsenode.cxx b/svgio/source/svgreader/svgellipsenode.cxx index 4454b9d696f2..fbf507ad86cf 100644 --- a/svgio/source/svgreader/svgellipsenode.cxx +++ b/svgio/source/svgreader/svgellipsenode.cxx @@ -20,6 +20,7 @@ #include <svgellipsenode.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> +#include <basegfx/polygon/b2dpolypolygon.hxx> namespace svgio { diff --git a/svgio/source/svgreader/svgimagenode.cxx b/svgio/source/svgreader/svgimagenode.cxx index 1e0861c86b03..63bf8539eb9e 100644 --- a/svgio/source/svgreader/svgimagenode.cxx +++ b/svgio/source/svgreader/svgimagenode.cxx @@ -19,13 +19,11 @@ #include <svgimagenode.hxx> #include <svgdocument.hxx> -#include <sax/tools/converter.hxx> #include <tools/stream.hxx> #include <vcl/bitmapex.hxx> #include <vcl/graphicfilter.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> #include <drawinglayer/primitive2d/bitmapprimitive2d.hxx> -#include <drawinglayer/primitive2d/groupprimitive2d.hxx> #include <drawinglayer/primitive2d/transformprimitive2d.hxx> #include <drawinglayer/primitive2d/maskprimitive2d.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> diff --git a/svgio/source/svgreader/svglinenode.cxx b/svgio/source/svgreader/svglinenode.cxx index bb3eae92adee..9555660e96e4 100644 --- a/svgio/source/svgreader/svglinenode.cxx +++ b/svgio/source/svgreader/svglinenode.cxx @@ -19,7 +19,7 @@ #include <svglinenode.hxx> #include <basegfx/polygon/b2dpolygon.hxx> -#include <basegfx/polygon/b2dpolygontools.hxx> +#include <basegfx/polygon/b2dpolypolygon.hxx> namespace svgio { diff --git a/svgio/source/svgreader/svgnode.cxx b/svgio/source/svgreader/svgnode.cxx index 3770efc6eea7..8f2e203a879a 100644 --- a/svgio/source/svgreader/svgnode.cxx +++ b/svgio/source/svgreader/svgnode.cxx @@ -17,7 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <basegfx/polygon/b2dpolypolygontools.hxx> #include <svgdocument.hxx> #include <svgnode.hxx> #include <svgstyleattributes.hxx> diff --git a/svgio/source/svgreader/svgpolynode.cxx b/svgio/source/svgreader/svgpolynode.cxx index adb37e69b7a2..ee7dc28d5162 100644 --- a/svgio/source/svgreader/svgpolynode.cxx +++ b/svgio/source/svgreader/svgpolynode.cxx @@ -19,8 +19,8 @@ #include <svgpolynode.hxx> #include <basegfx/polygon/b2dpolygon.hxx> -#include <basegfx/polygon/b2dpolypolygontools.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> +#include <basegfx/polygon/b2dpolypolygon.hxx> namespace svgio { diff --git a/svgio/source/svgreader/svgrectnode.cxx b/svgio/source/svgreader/svgrectnode.cxx index d8c9ce6afb91..a434b605a1cc 100644 --- a/svgio/source/svgreader/svgrectnode.cxx +++ b/svgio/source/svgreader/svgrectnode.cxx @@ -20,6 +20,7 @@ #include <svgrectnode.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> +#include <basegfx/polygon/b2dpolypolygon.hxx> namespace svgio { diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx index 502fe6991dd3..c5ee322e7cdc 100644 --- a/svgio/source/svgreader/svgstyleattributes.cxx +++ b/svgio/source/svgreader/svgstyleattributes.cxx @@ -37,7 +37,6 @@ #include <svgmasknode.hxx> #include <basegfx/polygon/b2dpolypolygontools.hxx> #include <svgmarkernode.hxx> -#include <basegfx/curve/b2dcubicbezier.hxx> #include <svgpatternnode.hxx> #include <drawinglayer/primitive2d/patternfillprimitive2d.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> diff --git a/svgio/source/svgreader/svgsymbolnode.cxx b/svgio/source/svgreader/svgsymbolnode.cxx index 45228cd8f37e..46190b2b1a52 100644 --- a/svgio/source/svgreader/svgsymbolnode.cxx +++ b/svgio/source/svgreader/svgsymbolnode.cxx @@ -18,8 +18,6 @@ */ #include <svgsymbolnode.hxx> -#include <drawinglayer/geometry/viewinformation2d.hxx> -#include <drawinglayer/primitive2d/transformprimitive2d.hxx> namespace svgio { diff --git a/svgio/source/svgreader/svgtextnode.cxx b/svgio/source/svgreader/svgtextnode.cxx index bc6d824877df..fc6e2b3ab19c 100644 --- a/svgio/source/svgreader/svgtextnode.cxx +++ b/svgio/source/svgreader/svgtextnode.cxx @@ -23,8 +23,6 @@ #include <svgtrefnode.hxx> #include <svgtextpathnode.hxx> #include <svgtspannode.hxx> -#include <drawinglayer/primitive2d/transformprimitive2d.hxx> -#include <drawinglayer/primitive2d/unifiedtransparenceprimitive2d.hxx> namespace svgio { diff --git a/svgio/source/svgreader/svgtextpathnode.cxx b/svgio/source/svgreader/svgtextpathnode.cxx index 04c7cbbc9e9f..9cd35599df60 100644 --- a/svgio/source/svgreader/svgtextpathnode.cxx +++ b/svgio/source/svgreader/svgtextpathnode.cxx @@ -21,12 +21,10 @@ #include <svgstyleattributes.hxx> #include <svgpathnode.hxx> #include <svgdocument.hxx> -#include <svgtrefnode.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> #include <drawinglayer/primitive2d/textbreakuphelper.hxx> #include <drawinglayer/primitive2d/textprimitive2d.hxx> -#include <drawinglayer/primitive2d/groupprimitive2d.hxx> #include <basegfx/curve/b2dcubicbezier.hxx> #include <basegfx/curve/b2dbeziertools.hxx> diff --git a/svgio/source/svgreader/svgtools.cxx b/svgio/source/svgreader/svgtools.cxx index 27d14eeda9f1..f64904b3d329 100644 --- a/svgio/source/svgreader/svgtools.cxx +++ b/svgio/source/svgreader/svgtools.cxx @@ -19,7 +19,7 @@ #include <svgtools.hxx> #include <sal/log.hxx> -#include <osl/thread.h> +#include <osl/diagnose.h> #include <tools/color.hxx> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> diff --git a/svgio/source/svgreader/svgvisitor.cxx b/svgio/source/svgreader/svgvisitor.cxx index 52247be8dd43..ee6102503b55 100644 --- a/svgio/source/svgreader/svgvisitor.cxx +++ b/svgio/source/svgreader/svgvisitor.cxx @@ -9,9 +9,7 @@ */ #include <sal/config.h> -#include <sal/log.hxx> -#include <svgdocumenthandler.hxx> #include <svgrectnode.hxx> #include <svgsvgnode.hxx> #include <svggnode.hxx> @@ -19,7 +17,6 @@ #include <svggradientnode.hxx> #include <svgvisitor.hxx> -#include <tools/color.hxx> namespace svgio { diff --git a/svgio/source/svguno/xsvgparser.cxx b/svgio/source/svguno/xsvgparser.cxx index 710ef636c89d..c96be4fb979d 100644 --- a/svgio/source/svguno/xsvgparser.cxx +++ b/svgio/source/svguno/xsvgparser.cxx @@ -18,7 +18,6 @@ */ #include <sal/config.h> -#include <sal/log.hxx> #include <com/sun/star/graphic/XSvgParser.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> @@ -29,7 +28,6 @@ #include <com/sun/star/xml/sax/XParser.hpp> #include <com/sun/star/xml/sax/Parser.hpp> #include <com/sun/star/xml/sax/InputSource.hpp> -#include <drawinglayer/geometry/viewinformation2d.hxx> #include <svgdocumenthandler.hxx> #include <tools/diagnose_ex.h> diff --git a/svgio/source/svguno/xsvgparser.hxx b/svgio/source/svguno/xsvgparser.hxx index a02467589d1c..f7e0185b671a 100644 --- a/svgio/source/svguno/xsvgparser.hxx +++ b/svgio/source/svguno/xsvgparser.hxx @@ -24,7 +24,6 @@ #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Sequence.hxx> -#include <sal/types.h> namespace com { namespace sun { namespace star { namespace uno { |