diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-02-08 21:16:35 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-02-18 14:20:40 +0100 |
commit | 581ec73d0fe5ae09449f0f48d6e3aa7c255ac6c1 (patch) | |
tree | e3e1638850677c5b326e16d65ad692ad1a220c8d /basegfx/test | |
parent | a18bb779e03217db6e18ba6b8110289b4b3f101d (diff) |
tdf#42949 Fix IWYU warnings in basegfx/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ic8476ddc7805546f2f6f253f282ac976bb3b7bd6
Reviewed-on: https://gerrit.libreoffice.org/67699
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'basegfx/test')
-rw-r--r-- | basegfx/test/B1DRangeTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2DHomMatrixTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2DPointTest.cxx | 2 | ||||
-rw-r--r-- | basegfx/test/B2DPolyPolygonTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2DPolyRangeTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2DPolygonTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2DPolygonToolsTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2DRangeTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2DTupleTest.cxx | 2 | ||||
-rw-r--r-- | basegfx/test/B2IBoxTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/B2XRangeTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/BColorTest.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/SvgPathImportExport.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/basegfx3d.cxx | 2 | ||||
-rw-r--r-- | basegfx/test/basegfxtools.cxx | 1 | ||||
-rw-r--r-- | basegfx/test/boxclipper.cxx | 5 | ||||
-rw-r--r-- | basegfx/test/clipstate.cxx | 5 | ||||
-rw-r--r-- | basegfx/test/genericclipper.cxx | 7 |
18 files changed, 0 insertions, 35 deletions
diff --git a/basegfx/test/B1DRangeTest.cxx b/basegfx/test/B1DRangeTest.cxx index 3eefc9026484..22cf662defe5 100644 --- a/basegfx/test/B1DRangeTest.cxx +++ b/basegfx/test/B1DRangeTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/range/b1drange.hxx> diff --git a/basegfx/test/B2DHomMatrixTest.cxx b/basegfx/test/B2DHomMatrixTest.cxx index 0687a16f721f..bf46026beaba 100644 --- a/basegfx/test/B2DHomMatrixTest.cxx +++ b/basegfx/test/B2DHomMatrixTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/matrix/b2dhommatrixtools.hxx> diff --git a/basegfx/test/B2DPointTest.cxx b/basegfx/test/B2DPointTest.cxx index b50bdd815d65..97c5c0714d32 100644 --- a/basegfx/test/B2DPointTest.cxx +++ b/basegfx/test/B2DPointTest.cxx @@ -17,10 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> namespace basegfx { diff --git a/basegfx/test/B2DPolyPolygonTest.cxx b/basegfx/test/B2DPolyPolygonTest.cxx index fd40e510688f..1fef45328357 100644 --- a/basegfx/test/B2DPolyPolygonTest.cxx +++ b/basegfx/test/B2DPolyPolygonTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/polygon/b2dpolypolygon.hxx> #include <basegfx/polygon/b2dtrapezoid.hxx> diff --git a/basegfx/test/B2DPolyRangeTest.cxx b/basegfx/test/B2DPolyRangeTest.cxx index 42e40d2b5c1c..84e66fa245d1 100644 --- a/basegfx/test/B2DPolyRangeTest.cxx +++ b/basegfx/test/B2DPolyRangeTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/range/b2drange.hxx> #include <basegfx/range/b2dpolyrange.hxx> diff --git a/basegfx/test/B2DPolygonTest.cxx b/basegfx/test/B2DPolygonTest.cxx index 297f25d6f03c..9f0d1ef98dcc 100644 --- a/basegfx/test/B2DPolygonTest.cxx +++ b/basegfx/test/B2DPolygonTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/point/b2dpoint.hxx> diff --git a/basegfx/test/B2DPolygonToolsTest.cxx b/basegfx/test/B2DPolygonToolsTest.cxx index c81e02a0e30c..8d9ae4e64bbd 100644 --- a/basegfx/test/B2DPolygonToolsTest.cxx +++ b/basegfx/test/B2DPolygonToolsTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/polygon/b2dpolygontools.hxx> diff --git a/basegfx/test/B2DRangeTest.cxx b/basegfx/test/B2DRangeTest.cxx index 566c3a66e1e5..5f918c3d2fbf 100644 --- a/basegfx/test/B2DRangeTest.cxx +++ b/basegfx/test/B2DRangeTest.cxx @@ -23,7 +23,6 @@ #include <cppunit/plugin/TestPlugIn.h> #include <basegfx/range/b2drange.hxx> -#include <basegfx/range/b1drange.hxx> #include <basegfx/range/b2irange.hxx> namespace basegfx diff --git a/basegfx/test/B2DTupleTest.cxx b/basegfx/test/B2DTupleTest.cxx index a01c075d6d52..b2ffd28e84f3 100644 --- a/basegfx/test/B2DTupleTest.cxx +++ b/basegfx/test/B2DTupleTest.cxx @@ -17,10 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> namespace basegfx { diff --git a/basegfx/test/B2IBoxTest.cxx b/basegfx/test/B2IBoxTest.cxx index 137c1b4ce123..f236308aeafd 100644 --- a/basegfx/test/B2IBoxTest.cxx +++ b/basegfx/test/B2IBoxTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/range/b2ibox.hxx> #include <basegfx/point/b2ipoint.hxx> diff --git a/basegfx/test/B2XRangeTest.cxx b/basegfx/test/B2XRangeTest.cxx index 009016ffea45..0a7c9930e782 100644 --- a/basegfx/test/B2XRangeTest.cxx +++ b/basegfx/test/B2XRangeTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/range/b2drange.hxx> #include <basegfx/range/b2irange.hxx> diff --git a/basegfx/test/BColorTest.cxx b/basegfx/test/BColorTest.cxx index cc29fdfb6624..647078f338da 100644 --- a/basegfx/test/BColorTest.cxx +++ b/basegfx/test/BColorTest.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/color/bcolor.hxx> #include <basegfx/color/bcolortools.hxx> diff --git a/basegfx/test/SvgPathImportExport.cxx b/basegfx/test/SvgPathImportExport.cxx index bf6753176d37..b03a3dc9e2ee 100644 --- a/basegfx/test/SvgPathImportExport.cxx +++ b/basegfx/test/SvgPathImportExport.cxx @@ -20,7 +20,6 @@ #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <cppunit/plugin/TestPlugIn.h> #include <basegfx/polygon/b2dpolygontools.hxx> #include <basegfx/polygon/b2dpolypolygon.hxx> diff --git a/basegfx/test/basegfx3d.cxx b/basegfx/test/basegfx3d.cxx index 951553e8d64d..279cc9a67756 100644 --- a/basegfx/test/basegfx3d.cxx +++ b/basegfx/test/basegfx3d.cxx @@ -17,8 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <sal/types.h> -#include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> diff --git a/basegfx/test/basegfxtools.cxx b/basegfx/test/basegfxtools.cxx index 5a443358f39b..7259a9980c70 100644 --- a/basegfx/test/basegfxtools.cxx +++ b/basegfx/test/basegfxtools.cxx @@ -17,7 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <sal/types.h> #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> diff --git a/basegfx/test/boxclipper.cxx b/basegfx/test/boxclipper.cxx index abf966b1f8b4..0987daf9d929 100644 --- a/basegfx/test/boxclipper.cxx +++ b/basegfx/test/boxclipper.cxx @@ -22,17 +22,12 @@ #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <basegfx/matrix/b2dhommatrix.hxx> -#include <basegfx/curve/b2dcubicbezier.hxx> -#include <basegfx/curve/b2dbeziertools.hxx> #include <basegfx/range/b2dpolyrange.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> #include <basegfx/polygon/b2dpolypolygontools.hxx> #include <basegfx/polygon/b2dpolypolygoncutter.hxx> -#include <basegfx/polygon/b2dpolygonclipper.hxx> #include <basegfx/polygon/b2dpolypolygon.hxx> -#include <basegfx/numeric/ftools.hxx> #include <comphelper/random.hxx> #include "boxclipper.hxx" diff --git a/basegfx/test/clipstate.cxx b/basegfx/test/clipstate.cxx index 4c64891c16aa..44e64b8c23d8 100644 --- a/basegfx/test/clipstate.cxx +++ b/basegfx/test/clipstate.cxx @@ -17,18 +17,13 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <sal/types.h> #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> #include <basegfx/utils/b2dclipstate.hxx> -#include <basegfx/range/b2dpolyrange.hxx> -#include <basegfx/polygon/b2dpolygon.hxx> -#include <basegfx/polygon/b2dpolygontools.hxx> #include <basegfx/polygon/b2dpolypolygontools.hxx> #include <basegfx/polygon/b2dpolypolygon.hxx> -#include <basegfx/numeric/ftools.hxx> using namespace ::basegfx; diff --git a/basegfx/test/genericclipper.cxx b/basegfx/test/genericclipper.cxx index 551eaac1f8a0..af88a66ba342 100644 --- a/basegfx/test/genericclipper.cxx +++ b/basegfx/test/genericclipper.cxx @@ -17,22 +17,15 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <sal/types.h> #include <cppunit/TestAssert.h> #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> -#include <basegfx/matrix/b2dhommatrix.hxx> -#include <basegfx/curve/b2dcubicbezier.hxx> -#include <basegfx/curve/b2dbeziertools.hxx> -#include <basegfx/range/b2dpolyrange.hxx> #include <basegfx/polygon/b2dpolygon.hxx> #include <basegfx/polygon/b2dpolygontools.hxx> #include <basegfx/polygon/b2dpolypolygontools.hxx> #include <basegfx/polygon/b2dpolypolygoncutter.hxx> -#include <basegfx/polygon/b2dpolygonclipper.hxx> #include <basegfx/polygon/b2dpolypolygon.hxx> -#include <basegfx/numeric/ftools.hxx> using namespace ::basegfx; |