diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-09-24 11:29:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-09-24 15:49:11 +0200 |
commit | 4ae5c029078df88bfb7dfb6753830210df0c40a8 (patch) | |
tree | 0919f0c6250bcd14d4d1830c7dc7dfbfa8660a3e | |
parent | d0bd1880f4edf6b5a1657e675aa10a6418003d99 (diff) |
missing includes (--with-webdav=serf)
Change-Id: I021b378b2ae001a38c8f84a71e90ec4f14c905e6
Reviewed-on: https://gerrit.libreoffice.org/60928
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | ucb/source/ucp/webdav/webdavcontent.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/webdavdatasupplier.cxx | 1 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/webdavprovider.cxx | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx index fac2d5dcced5..8fb3b7a52d79 100644 --- a/ucb/source/ucp/webdav/webdavcontent.cxx +++ b/ucb/source/ucp/webdav/webdavcontent.cxx @@ -18,11 +18,14 @@ */ #include <memory> + +#include <cppuhelper/queryinterface.hxx> #include <osl/diagnose.h> #include <rtl/uri.hxx> #include <rtl/ustrbuf.hxx> #include <sal/log.hxx> #include <ucbhelper/contentidentifier.hxx> +#include <ucbhelper/macros.hxx> #include <ucbhelper/propertyvalueset.hxx> #include <ucbhelper/simpleinteractionrequest.hxx> #include <ucbhelper/cancelcommandexecution.hxx> @@ -38,6 +41,7 @@ #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/lang/IllegalAccessException.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <com/sun/star/sdbc/SQLException.hpp> #include <com/sun/star/task/PasswordContainerInteractionHandler.hpp> #include <com/sun/star/ucb/CommandEnvironment.hpp> #include <com/sun/star/ucb/CommandFailedException.hpp> diff --git a/ucb/source/ucp/webdav/webdavdatasupplier.cxx b/ucb/source/ucp/webdav/webdavdatasupplier.cxx index 141ed988aa14..e9c07a10e423 100644 --- a/ucb/source/ucp/webdav/webdavdatasupplier.cxx +++ b/ucb/source/ucp/webdav/webdavdatasupplier.cxx @@ -33,6 +33,7 @@ #include "DAVSession.hxx" #include "SerfUri.hxx" #include <com/sun/star/ucb/IllegalIdentifierException.hpp> +#include <com/sun/star/ucb/ResultSetException.hpp> using namespace com::sun::star; using namespace http_dav_ucp; diff --git a/ucb/source/ucp/webdav/webdavprovider.cxx b/ucb/source/ucp/webdav/webdavprovider.cxx index 734f5702ef0f..62cfe28d626d 100644 --- a/ucb/source/ucp/webdav/webdavprovider.cxx +++ b/ucb/source/ucp/webdav/webdavprovider.cxx @@ -18,9 +18,12 @@ */ #include <ucbhelper/contentidentifier.hxx> +#include <ucbhelper/getcomponentcontext.hxx> +#include <ucbhelper/macros.hxx> #include "webdavprovider.hxx" #include "webdavcontent.hxx" +#include <cppuhelper/queryinterface.hxx> #include <osl/mutex.hxx> #include <rtl/ustrbuf.hxx> #include <comphelper/processfactory.hxx> |