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 /ucb | |
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 'ucb')
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_contentcaps.cxx | 1 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_provider.cxx | 1 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_stgelems.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_storage.cxx | 1 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/DAVSessionFactory.cxx | 1 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/LockSequence.cxx | 1 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonLockStore.cxx | 1 |
7 files changed, 8 insertions, 0 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx b/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx index f3a00c3fbf6c..e4ae2068d94c 100644 --- a/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx +++ b/ucb/source/ucp/tdoc/tdoc_contentcaps.cxx @@ -61,6 +61,7 @@ #include <com/sun/star/ucb/CommandInfo.hpp> #include <com/sun/star/ucb/OpenCommandArgument2.hpp> #include <com/sun/star/ucb/TransferInfo.hpp> +#include <osl/diagnose.h> #include <sal/macros.h> #include <tdoc_content.hxx> diff --git a/ucb/source/ucp/tdoc/tdoc_provider.cxx b/ucb/source/ucp/tdoc/tdoc_provider.cxx index df3ea9c93895..a21939ec81b9 100644 --- a/ucb/source/ucp/tdoc/tdoc_provider.cxx +++ b/ucb/source/ucp/tdoc/tdoc_provider.cxx @@ -25,6 +25,7 @@ *************************************************************************/ #include "rtl/ustrbuf.hxx" +#include <osl/diagnose.h> #include "com/sun/star/container/XNameAccess.hpp" #include "com/sun/star/embed/XStorage.hpp" diff --git a/ucb/source/ucp/tdoc/tdoc_stgelems.cxx b/ucb/source/ucp/tdoc/tdoc_stgelems.cxx index 55c505d3cd26..91dd5714e44a 100644 --- a/ucb/source/ucp/tdoc/tdoc_stgelems.cxx +++ b/ucb/source/ucp/tdoc/tdoc_stgelems.cxx @@ -26,6 +26,8 @@ *************************************************************************/ +#include <osl/diagnose.h> + #include "com/sun/star/lang/DisposedException.hpp" #include "com/sun/star/reflection/ProxyFactory.hpp" diff --git a/ucb/source/ucp/tdoc/tdoc_storage.cxx b/ucb/source/ucp/tdoc/tdoc_storage.cxx index a1a26890b412..31168a08d504 100644 --- a/ucb/source/ucp/tdoc/tdoc_storage.cxx +++ b/ucb/source/ucp/tdoc/tdoc_storage.cxx @@ -22,6 +22,7 @@ #include "com/sun/star/beans/XPropertySet.hpp" #include "com/sun/star/embed/ElementModes.hpp" #include "com/sun/star/embed/StorageFactory.hpp" +#include <osl/diagnose.h> #include "comphelper/processfactory.hxx" #include "tdoc_uri.hxx" diff --git a/ucb/source/ucp/webdav-neon/DAVSessionFactory.cxx b/ucb/source/ucp/webdav-neon/DAVSessionFactory.cxx index 0c650abbdccd..db1ee134df0f 100644 --- a/ucb/source/ucp/webdav-neon/DAVSessionFactory.cxx +++ b/ucb/source/ucp/webdav-neon/DAVSessionFactory.cxx @@ -29,6 +29,7 @@ #include "DAVSessionFactory.hxx" #include "NeonSession.hxx" #include "NeonUri.hxx" +#include <osl/diagnose.h> #include <com/sun/star/lang/XMultiServiceFactory.hpp> using namespace webdav_ucp; diff --git a/ucb/source/ucp/webdav-neon/LockSequence.cxx b/ucb/source/ucp/webdav-neon/LockSequence.cxx index 56309651298a..d5ce74e16046 100644 --- a/ucb/source/ucp/webdav-neon/LockSequence.cxx +++ b/ucb/source/ucp/webdav-neon/LockSequence.cxx @@ -29,6 +29,7 @@ #include <config_lgpl.h> #include <string.h> #include <ne_xml.h> +#include <osl/diagnose.h> #include "LockSequence.hxx" using namespace webdav_ucp; diff --git a/ucb/source/ucp/webdav-neon/NeonLockStore.cxx b/ucb/source/ucp/webdav-neon/NeonLockStore.cxx index 30f22d1025ff..5d7d35f904f6 100644 --- a/ucb/source/ucp/webdav-neon/NeonLockStore.cxx +++ b/ucb/source/ucp/webdav-neon/NeonLockStore.cxx @@ -31,6 +31,7 @@ #include "rtl/ustring.hxx" #include "osl/time.h" #include "osl/thread.hxx" +#include <osl/diagnose.h> #include "salhelper/thread.hxx" #include "NeonSession.hxx" #include "NeonLockStore.hxx" |