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 /ucbhelper | |
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 'ucbhelper')
-rw-r--r-- | ucbhelper/source/client/interceptedinteraction.cxx | 1 | ||||
-rw-r--r-- | ucbhelper/source/client/proxydecider.cxx | 2 | ||||
-rw-r--r-- | ucbhelper/source/provider/fd_inputstream.cxx | 1 | ||||
-rw-r--r-- | ucbhelper/source/provider/interactionrequest.cxx | 4 | ||||
-rw-r--r-- | ucbhelper/source/provider/simpleinteractionrequest.cxx | 2 |
5 files changed, 9 insertions, 1 deletions
diff --git a/ucbhelper/source/client/interceptedinteraction.cxx b/ucbhelper/source/client/interceptedinteraction.cxx index f9d6dab72df4..284751f378bf 100644 --- a/ucbhelper/source/client/interceptedinteraction.cxx +++ b/ucbhelper/source/client/interceptedinteraction.cxx @@ -19,6 +19,7 @@ #include <ucbhelper/interceptedinteraction.hxx> +#include <osl/diagnose.h> namespace ucbhelper{ diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index d307a5084263..5f2bf5ce057d 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -20,6 +20,8 @@ #include <utility> #include <vector> #include <list> + +#include <osl/diagnose.h> #include <osl/mutex.hxx> #include <rtl/ref.hxx> #include <osl/socket.hxx> diff --git a/ucbhelper/source/provider/fd_inputstream.cxx b/ucbhelper/source/provider/fd_inputstream.cxx index 2c40d03ad9f8..af2abda11273 100644 --- a/ucbhelper/source/provider/fd_inputstream.cxx +++ b/ucbhelper/source/provider/fd_inputstream.cxx @@ -20,6 +20,7 @@ #include "ucbhelper/fd_inputstream.hxx" #include <rtl/alloc.h> +#include <osl/diagnose.h> #include <algorithm> using namespace com::sun::star::uno; diff --git a/ucbhelper/source/provider/interactionrequest.cxx b/ucbhelper/source/provider/interactionrequest.cxx index 18f15e100e3f..21f2d179f0da 100644 --- a/ucbhelper/source/provider/interactionrequest.cxx +++ b/ucbhelper/source/provider/interactionrequest.cxx @@ -23,9 +23,11 @@ ************************************************************************** *************************************************************************/ +#include <ucbhelper/interactionrequest.hxx> + #include <osl/mutex.hxx> +#include <osl/diagnose.h> #include <cppuhelper/typeprovider.hxx> -#include <ucbhelper/interactionrequest.hxx> using namespace com::sun::star; using namespace ucbhelper; diff --git a/ucbhelper/source/provider/simpleinteractionrequest.cxx b/ucbhelper/source/provider/simpleinteractionrequest.cxx index 01a541726fa6..ea4d7ef5bb5f 100644 --- a/ucbhelper/source/provider/simpleinteractionrequest.cxx +++ b/ucbhelper/source/provider/simpleinteractionrequest.cxx @@ -19,6 +19,8 @@ #include <ucbhelper/simpleinteractionrequest.hxx> +#include <osl/diagnose.h> + using namespace com::sun::star; using namespace ucbhelper; |