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 /sd | |
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 'sd')
-rw-r--r-- | sd/source/filter/ppt/propread.cxx | 1 | ||||
-rw-r--r-- | sd/source/ui/animations/STLPropertySet.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/sidebar/MasterPageContainer.cxx | 1 | ||||
-rw-r--r-- | sd/source/ui/slidesorter/view/SlsFontProvider.cxx | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/sd/source/filter/ppt/propread.cxx b/sd/source/filter/ppt/propread.cxx index a8cb6dda470b..69034aadc7c2 100644 --- a/sd/source/filter/ppt/propread.cxx +++ b/sd/source/filter/ppt/propread.cxx @@ -20,6 +20,7 @@ #include <propread.hxx> #include "rtl/tencinfo.h" #include "rtl/textenc.h" +#include <osl/diagnose.h> PropEntry::PropEntry( sal_uInt32 nId, const sal_uInt8* pBuf, sal_uInt32 nBufSize, sal_uInt16 nTextEnc ) : mnId ( nId ), diff --git a/sd/source/ui/animations/STLPropertySet.cxx b/sd/source/ui/animations/STLPropertySet.cxx index 07330828526f..9044c0204226 100644 --- a/sd/source/ui/animations/STLPropertySet.cxx +++ b/sd/source/ui/animations/STLPropertySet.cxx @@ -19,6 +19,8 @@ #include "STLPropertySet.hxx" +#include <osl/diagnose.h> + using namespace com::sun::star::beans; using com::sun::star::uno::Any; diff --git a/sd/source/ui/sidebar/MasterPageContainer.cxx b/sd/source/ui/sidebar/MasterPageContainer.cxx index dae5dffdc231..6ce87fb0019a 100644 --- a/sd/source/ui/sidebar/MasterPageContainer.cxx +++ b/sd/source/ui/sidebar/MasterPageContainer.cxx @@ -53,6 +53,7 @@ #include "tools/TimerBasedTaskExecution.hxx" #include "pres.hxx" #include <osl/mutex.hxx> +#include <osl/getglobalmutex.hxx> #include <boost/scoped_ptr.hpp> #include <boost/weak_ptr.hpp> diff --git a/sd/source/ui/slidesorter/view/SlsFontProvider.cxx b/sd/source/ui/slidesorter/view/SlsFontProvider.cxx index 90bf000283a4..120d428085eb 100644 --- a/sd/source/ui/slidesorter/view/SlsFontProvider.cxx +++ b/sd/source/ui/slidesorter/view/SlsFontProvider.cxx @@ -22,6 +22,7 @@ #include "controller/SlideSorterController.hxx" #include <sfx2/app.hxx> +#include <osl/getglobalmutex.hxx> #include <com/sun/star/uno/RuntimeException.hpp> using namespace ::sd::slidesorter; |