From aa7a23f4f71853b7a256435404b7f73ddefc061e Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Mon, 16 Dec 2019 18:54:31 +0100 Subject: 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 --- svgio/source/svgreader/svgcharacternode.cxx | 1 - svgio/source/svgreader/svgcirclenode.cxx | 1 + svgio/source/svgreader/svgellipsenode.cxx | 1 + svgio/source/svgreader/svgimagenode.cxx | 2 -- svgio/source/svgreader/svglinenode.cxx | 2 +- svgio/source/svgreader/svgnode.cxx | 1 - svgio/source/svgreader/svgpolynode.cxx | 2 +- svgio/source/svgreader/svgrectnode.cxx | 1 + svgio/source/svgreader/svgstyleattributes.cxx | 1 - svgio/source/svgreader/svgsymbolnode.cxx | 2 -- svgio/source/svgreader/svgtextnode.cxx | 2 -- svgio/source/svgreader/svgtextpathnode.cxx | 2 -- svgio/source/svgreader/svgtools.cxx | 2 +- svgio/source/svgreader/svgvisitor.cxx | 3 --- svgio/source/svguno/xsvgparser.cxx | 2 -- svgio/source/svguno/xsvgparser.hxx | 1 - 16 files changed, 6 insertions(+), 20 deletions(-) (limited to 'svgio/source') 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 #include #include -#include #include 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 #include #include +#include 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 #include #include +#include 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 #include -#include #include #include #include #include #include -#include #include #include #include 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 #include -#include +#include 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 #include #include #include 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 #include -#include #include +#include 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 #include #include +#include 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 #include #include -#include #include #include #include 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 -#include -#include 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 #include #include -#include -#include 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 #include #include -#include #include #include #include #include -#include #include #include 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 #include -#include +#include #include #include #include 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 -#include -#include #include #include #include @@ -19,7 +17,6 @@ #include #include -#include 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 -#include #include #include @@ -29,7 +28,6 @@ #include #include #include -#include #include #include 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 #include -#include namespace com { namespace sun { namespace star { namespace uno { -- cgit