diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-14 22:52:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-17 11:06:53 +0100 |
commit | 6a0fe37dec107392fbe468a35b89071b9a93d2c1 (patch) | |
tree | 4334feae68fa1ddc1ef293cd46ef483f44081c1c /slideshow/source/engine | |
parent | 30f3b36e07ce37a3fe1909fb4b1419a00d2fdd81 (diff) |
sal: clean up public headers with include-what-you-use
Sadly cannot forward declare "struct {...} TimeValue;".
rtl/(u)?string.hxx still include sal/log.hxx but removing osl/diagnose.h
was painful enough for now...
Change-Id: Id41e17f3870c4f24c53ce7b11f2c40a3d14d1f05
Diffstat (limited to 'slideshow/source/engine')
-rw-r--r-- | slideshow/source/engine/activitiesqueue.cxx | 1 | ||||
-rw-r--r-- | slideshow/source/engine/screenupdater.cxx | 2 | ||||
-rw-r--r-- | slideshow/source/engine/transitions/snakewipe.cxx | 1 | ||||
-rw-r--r-- | slideshow/source/engine/unoviewcontainer.cxx | 4 |
4 files changed, 7 insertions, 1 deletions
diff --git a/slideshow/source/engine/activitiesqueue.cxx b/slideshow/source/engine/activitiesqueue.cxx index 7a3c215a4738..3cca2ef46929 100644 --- a/slideshow/source/engine/activitiesqueue.cxx +++ b/slideshow/source/engine/activitiesqueue.cxx @@ -24,6 +24,7 @@ #include <comphelper/anytostring.hxx> #include <cppuhelper/exc_hlp.hxx> +#include <osl/diagnose.h> #include "slideshowexceptions.hxx" #include "activity.hxx" diff --git a/slideshow/source/engine/screenupdater.cxx b/slideshow/source/engine/screenupdater.cxx index 0f6fec48d822..ddb8b597c307 100644 --- a/slideshow/source/engine/screenupdater.cxx +++ b/slideshow/source/engine/screenupdater.cxx @@ -20,6 +20,8 @@ #include "screenupdater.hxx" #include "listenercontainer.hxx" +#include <osl/diagnose.h> + #include <boost/shared_ptr.hpp> #include <boost/mem_fn.hpp> #include <vector> diff --git a/slideshow/source/engine/transitions/snakewipe.cxx b/slideshow/source/engine/transitions/snakewipe.cxx index 4352410df311..0fe917f65afe 100644 --- a/slideshow/source/engine/transitions/snakewipe.cxx +++ b/slideshow/source/engine/transitions/snakewipe.cxx @@ -18,6 +18,7 @@ */ +#include <osl/diagnose.h> #include <canvas/debug.hxx> #include <basegfx/matrix/b2dhommatrix.hxx> #include <basegfx/point/b2dpoint.hxx> diff --git a/slideshow/source/engine/unoviewcontainer.cxx b/slideshow/source/engine/unoviewcontainer.cxx index 0f27c8f60af0..2be436cd848c 100644 --- a/slideshow/source/engine/unoviewcontainer.cxx +++ b/slideshow/source/engine/unoviewcontainer.cxx @@ -18,9 +18,11 @@ */ -#include <canvas/debug.hxx> #include <unoviewcontainer.hxx> +#include <canvas/debug.hxx> +#include <osl/diagnose.h> + #include <boost/bind.hpp> #include <algorithm> |