summaryrefslogtreecommitdiff
path: root/slideshow/source
diff options
context:
space:
mode:
authorGabor Kelemen <kelemen.gabor2@nisz.hu>2020-11-29 22:26:58 +0100
committerMiklos Vajna <vmiklos@collabora.com>2020-12-01 14:56:43 +0100
commit107399d684bae9e58f5e4020f15eb8a689f1db82 (patch)
treed4acfa1fab53bf624a245f893fcca6221b56230c /slideshow/source
parent9c94bae963ef5019f6ca0394d076b1288969aa53 (diff)
tdf#42949 Fix new IWYU warnings in directories s*
Except recently checked sc, sd, svx, sw Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: Ice1b86628e4f22a39f307b9c5fa567b6ab9d5acb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106917 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'slideshow/source')
-rw-r--r--slideshow/source/engine/animationnodes/animationphysicsnode.cxx1
-rw-r--r--slideshow/source/engine/animationnodes/animationphysicsnode.hxx1
-rw-r--r--slideshow/source/engine/box2dtools.cxx3
-rw-r--r--slideshow/source/engine/shapeattributelayer.cxx2
-rw-r--r--slideshow/source/engine/shapes/appletshape.cxx2
-rw-r--r--slideshow/source/engine/shapes/backgroundshape.cxx1
-rw-r--r--slideshow/source/engine/shapes/mediashape.cxx1
-rw-r--r--slideshow/source/inc/box2dtools.hxx1
-rw-r--r--slideshow/source/inc/smilfunctionparser.hxx1
-rw-r--r--slideshow/source/inc/tools.hxx1
10 files changed, 6 insertions, 8 deletions
diff --git a/slideshow/source/engine/animationnodes/animationphysicsnode.cxx b/slideshow/source/engine/animationnodes/animationphysicsnode.cxx
index c750d333322a..6d2e5b756df1 100644
--- a/slideshow/source/engine/animationnodes/animationphysicsnode.cxx
+++ b/slideshow/source/engine/animationnodes/animationphysicsnode.cxx
@@ -19,7 +19,6 @@
#include "animationphysicsnode.hxx"
#include <animationfactory.hxx>
-#include <o3tl/any.hxx>
constexpr double fDefaultStartVelocityX(0.0);
constexpr double fDefaultStartVelocityY(0.0);
diff --git a/slideshow/source/engine/animationnodes/animationphysicsnode.hxx b/slideshow/source/engine/animationnodes/animationphysicsnode.hxx
index d9af6802a037..78298b23bcad 100644
--- a/slideshow/source/engine/animationnodes/animationphysicsnode.hxx
+++ b/slideshow/source/engine/animationnodes/animationphysicsnode.hxx
@@ -19,7 +19,6 @@
#pragma once
#include "animationbasenode.hxx"
-#include <com/sun/star/animations/XAnimateMotion.hpp>
#include <com/sun/star/animations/XAnimatePhysics.hpp>
namespace slideshow
diff --git a/slideshow/source/engine/box2dtools.cxx b/slideshow/source/engine/box2dtools.cxx
index c822f564a008..8aeb46ac318f 100644
--- a/slideshow/source/engine/box2dtools.cxx
+++ b/slideshow/source/engine/box2dtools.cxx
@@ -16,11 +16,10 @@
#include <basegfx/polygon/b2dpolypolygontools.hxx>
#include <basegfx/polygon/b2dpolygontools.hxx>
#include <basegfx/polygon/b2dpolygontriangulator.hxx>
-#include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
#include <svx/svdobj.hxx>
#include <svx/svdoashp.hxx>
-#include <svx/svdogrp.hxx>
+#include <svx/svdpage.hxx>
#include <svx/unoapi.hxx>
diff --git a/slideshow/source/engine/shapeattributelayer.cxx b/slideshow/source/engine/shapeattributelayer.cxx
index a688f479caec..25ac6a41c157 100644
--- a/slideshow/source/engine/shapeattributelayer.cxx
+++ b/slideshow/source/engine/shapeattributelayer.cxx
@@ -26,8 +26,6 @@
#include <com/sun/star/awt/FontWeight.hpp>
#include <com/sun/star/animations/AnimationAdditiveMode.hpp>
-#include <rtl/math.hxx>
-
using namespace ::com::sun::star;
diff --git a/slideshow/source/engine/shapes/appletshape.cxx b/slideshow/source/engine/shapes/appletshape.cxx
index 20d9a08b52e7..102dc6aaf3f4 100644
--- a/slideshow/source/engine/shapes/appletshape.cxx
+++ b/slideshow/source/engine/shapes/appletshape.cxx
@@ -23,6 +23,8 @@
#include "viewappletshape.hxx"
#include <tools.hxx>
+#include <osl/diagnose.h>
+
#include <algorithm>
diff --git a/slideshow/source/engine/shapes/backgroundshape.cxx b/slideshow/source/engine/shapes/backgroundshape.cxx
index 093502815eaf..b107fe4af038 100644
--- a/slideshow/source/engine/shapes/backgroundshape.cxx
+++ b/slideshow/source/engine/shapes/backgroundshape.cxx
@@ -21,6 +21,7 @@
#include <com/sun/star/beans/XPropertySet.hpp>
#include <sal/log.hxx>
+#include <osl/diagnose.h>
#include <algorithm>
diff --git a/slideshow/source/engine/shapes/mediashape.cxx b/slideshow/source/engine/shapes/mediashape.cxx
index 55c302bc683c..64dfd2d0548d 100644
--- a/slideshow/source/engine/shapes/mediashape.cxx
+++ b/slideshow/source/engine/shapes/mediashape.cxx
@@ -19,6 +19,7 @@
#include <com/sun/star/drawing/XShape.hpp>
+#include <osl/diagnose.h>
#include "mediashape.hxx"
#include "viewmediashape.hxx"
diff --git a/slideshow/source/inc/box2dtools.hxx b/slideshow/source/inc/box2dtools.hxx
index 53eaf0b88fad..c7edd00ca27b 100644
--- a/slideshow/source/inc/box2dtools.hxx
+++ b/slideshow/source/inc/box2dtools.hxx
@@ -12,7 +12,6 @@
#include "shape.hxx"
#include "shapeattributelayer.hxx"
#include "attributemap.hxx"
-#include <map>
#include <unordered_map>
#include <queue>
diff --git a/slideshow/source/inc/smilfunctionparser.hxx b/slideshow/source/inc/smilfunctionparser.hxx
index 556ae9334e54..d2ef96abf52c 100644
--- a/slideshow/source/inc/smilfunctionparser.hxx
+++ b/slideshow/source/inc/smilfunctionparser.hxx
@@ -23,6 +23,7 @@
#include "expressionnode.hxx"
#include <basegfx/range/b2drectangle.hxx>
+#include <rtl/ustring.hxx>
#include <memory>
diff --git a/slideshow/source/inc/tools.hxx b/slideshow/source/inc/tools.hxx
index 801cdf025d69..f4210e477ea2 100644
--- a/slideshow/source/inc/tools.hxx
+++ b/slideshow/source/inc/tools.hxx
@@ -27,7 +27,6 @@
#include <com/sun/star/container/XEnumerationAccess.hpp>
#include <com/sun/star/container/XEnumeration.hpp>
#include <comphelper/random.hxx>
-#include <osl/diagnose.h>
#include <sal/log.hxx>
#include <cppcanvas/color.hxx>