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 /package | |
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 'package')
-rw-r--r-- | package/source/manifest/ManifestExport.cxx | 1 | ||||
-rw-r--r-- | package/source/manifest/ManifestImport.cxx | 1 | ||||
-rw-r--r-- | package/source/xstor/register.cxx | 1 | ||||
-rw-r--r-- | package/source/xstor/xfactory.cxx | 1 | ||||
-rw-r--r-- | package/source/zipapi/Deflater.cxx | 1 | ||||
-rw-r--r-- | package/source/zipapi/XUnbufferedStream.cxx | 1 | ||||
-rw-r--r-- | package/source/zipapi/ZipFile.cxx | 1 | ||||
-rw-r--r-- | package/source/zipapi/ZipOutputEntry.cxx | 1 | ||||
-rw-r--r-- | package/source/zipapi/ZipOutputStream.cxx | 1 | ||||
-rw-r--r-- | package/source/zippackage/ZipPackage.cxx | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/package/source/manifest/ManifestExport.cxx b/package/source/manifest/ManifestExport.cxx index 1ced0a6effed..b7a6acb9864a 100644 --- a/package/source/manifest/ManifestExport.cxx +++ b/package/source/manifest/ManifestExport.cxx @@ -29,6 +29,7 @@ #include <ManifestExport.hxx> #include <sax/tools/converter.hxx> +#include <osl/diagnose.h> #include <rtl/ustrbuf.hxx> #include <comphelper/documentconstants.hxx> #include <comphelper/attributelist.hxx> diff --git a/package/source/manifest/ManifestImport.cxx b/package/source/manifest/ManifestImport.cxx index 6c2511534686..02854f7216a0 100644 --- a/package/source/manifest/ManifestImport.cxx +++ b/package/source/manifest/ManifestImport.cxx @@ -20,6 +20,7 @@ #include <ManifestImport.hxx> #include <ManifestDefines.hxx> #include <sax/tools/converter.hxx> +#include <osl/diagnose.h> #include <com/sun/star/xml/sax/XAttributeList.hpp> #include <com/sun/star/xml/crypto/DigestID.hpp> #include <com/sun/star/xml/crypto/CipherID.hpp> diff --git a/package/source/xstor/register.cxx b/package/source/xstor/register.cxx index bf57fc7c68a9..3020ddd59d0f 100644 --- a/package/source/xstor/register.cxx +++ b/package/source/xstor/register.cxx @@ -20,6 +20,7 @@ #include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/registry/InvalidRegistryException.hpp> #include <cppuhelper/factory.hxx> +#include <osl/diagnose.h> #include "xfactory.hxx" diff --git a/package/source/xstor/xfactory.cxx b/package/source/xstor/xfactory.cxx index ffc3f2216c58..54905ab305dc 100644 --- a/package/source/xstor/xfactory.cxx +++ b/package/source/xstor/xfactory.cxx @@ -27,6 +27,7 @@ #include <comphelper/processfactory.hxx> #include <comphelper/storagehelper.hxx> #include <cppuhelper/supportsservice.hxx> +#include <osl/diagnose.h> #include "xfactory.hxx" #include "xstorage.hxx" diff --git a/package/source/zipapi/Deflater.cxx b/package/source/zipapi/Deflater.cxx index 42628d72195b..70fe26dde107 100644 --- a/package/source/zipapi/Deflater.cxx +++ b/package/source/zipapi/Deflater.cxx @@ -20,6 +20,7 @@ #include <package/Deflater.hxx> #include <zlib.h> #include <com/sun/star/packages/zip/ZipConstants.hpp> +#include <osl/diagnose.h> #include <string.h> using namespace com::sun::star::packages::zip::ZipConstants; diff --git a/package/source/zipapi/XUnbufferedStream.cxx b/package/source/zipapi/XUnbufferedStream.cxx index 329e45f17cff..c4fbcfa00c5f 100644 --- a/package/source/zipapi/XUnbufferedStream.cxx +++ b/package/source/zipapi/XUnbufferedStream.cxx @@ -29,6 +29,7 @@ #include <algorithm> #include <string.h> +#include <osl/diagnose.h> #include <osl/mutex.hxx> using namespace ::com::sun::star; diff --git a/package/source/zipapi/ZipFile.cxx b/package/source/zipapi/ZipFile.cxx index 1fd536ff6046..cd4ed2e7491f 100644 --- a/package/source/zipapi/ZipFile.cxx +++ b/package/source/zipapi/ZipFile.cxx @@ -31,6 +31,7 @@ #include <comphelper/storagehelper.hxx> #include <comphelper/processfactory.hxx> #include <rtl/digest.h> +#include <osl/diagnose.h> #include <vector> diff --git a/package/source/zipapi/ZipOutputEntry.cxx b/package/source/zipapi/ZipOutputEntry.cxx index 54600d5964e6..adbbf2573e5e 100644 --- a/package/source/zipapi/ZipOutputEntry.cxx +++ b/package/source/zipapi/ZipOutputEntry.cxx @@ -23,6 +23,7 @@ #include <comphelper/storagehelper.hxx> #include <osl/time.h> +#include <osl/diagnose.h> #include <PackageConstants.hxx> #include <ZipEntry.hxx> diff --git a/package/source/zipapi/ZipOutputStream.cxx b/package/source/zipapi/ZipOutputStream.cxx index 902816ebe711..9c1252746f82 100644 --- a/package/source/zipapi/ZipOutputStream.cxx +++ b/package/source/zipapi/ZipOutputStream.cxx @@ -22,6 +22,7 @@ #include <com/sun/star/packages/zip/ZipConstants.hpp> #include <com/sun/star/io/XOutputStream.hpp> #include <comphelper/storagehelper.hxx> +#include <osl/diagnose.h> #include <osl/time.h> diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx index 2e64af8d92b1..8da7c1ff00af 100644 --- a/package/source/zippackage/ZipPackage.cxx +++ b/package/source/zippackage/ZipPackage.cxx @@ -65,6 +65,7 @@ #include <rtl/random.h> #include <rtl/instance.hxx> #include <osl/time.h> +#include <osl/diagnose.h> #include "com/sun/star/io/XAsyncOutputMonitor.hpp" #include <cstring> |