summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2013-03-24 12:21:20 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-05-27 20:25:37 +0100
commit3c18e25efdbbc13be3a0c6ed354d5e7a46feb451 (patch)
treedb9d8af56e107f7ccaab6b4e6a2fc5c55f50c4eb /ucb
parentb42211965a5246735c6551f1472c82da8d20d508 (diff)
Header clean-up
(cherry picked from commit 9e6159be30751d0ff3af6086de0114cb769873ee) Change-Id: I1bd046e1aca89d3dd35780338737ca4a6f207bca
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/AprEnv.cxx2
-rw-r--r--ucb/source/ucp/webdav/DAVRequestEnvironment.hxx2
-rw-r--r--ucb/source/ucp/webdav/DAVResource.hxx4
-rw-r--r--ucb/source/ucp/webdav/DAVResourceAccess.cxx10
-rw-r--r--ucb/source/ucp/webdav/SerfCallbacks.cxx6
-rw-r--r--ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx2
-rw-r--r--ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx2
-rw-r--r--ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx6
-rw-r--r--ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx6
-rw-r--r--ucb/source/ucp/webdav/SerfLockStore.cxx6
-rw-r--r--ucb/source/ucp/webdav/SerfLockStore.hxx4
-rw-r--r--ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx2
-rw-r--r--ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx2
-rw-r--r--ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx4
-rw-r--r--ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx8
-rw-r--r--ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx4
-rw-r--r--ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx8
-rw-r--r--ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx4
-rw-r--r--ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx2
-rw-r--r--ucb/source/ucp/webdav/SerfRequestProcessor.cxx10
-rw-r--r--ucb/source/ucp/webdav/SerfRequestProcessor.hxx8
-rw-r--r--ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx2
-rw-r--r--ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx22
-rw-r--r--ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx4
-rw-r--r--ucb/source/ucp/webdav/SerfSession.cxx16
-rw-r--r--ucb/source/ucp/webdav/SerfSession.hxx6
-rw-r--r--ucb/source/ucp/webdav/SerfUri.cxx2
-rw-r--r--ucb/source/ucp/webdav/SerfUri.hxx2
-rw-r--r--ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx2
-rw-r--r--ucb/source/ucp/webdav/webdavcontent.cxx8
-rw-r--r--ucb/source/ucp/webdav/webdavprovider.cxx2
-rw-r--r--ucb/source/ucp/webdav/webdavresponseparser.cxx2
-rw-r--r--ucb/source/ucp/webdav/webdavresponseparser.hxx2
42 files changed, 95 insertions, 95 deletions
diff --git a/ucb/source/ucp/webdav/AprEnv.cxx b/ucb/source/ucp/webdav/AprEnv.cxx
index 6c52b1affacf..327b7dd82ad1 100644
--- a/ucb/source/ucp/webdav/AprEnv.cxx
+++ b/ucb/source/ucp/webdav/AprEnv.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <AprEnv.hxx>
+#include "AprEnv.hxx"
namespace apr_environment
{
diff --git a/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx b/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx
index ea63b9efe514..db2a8530f72c 100644
--- a/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx
+++ b/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx
@@ -23,7 +23,7 @@
#include <vector>
#include <rtl/ref.hxx>
-#include <DAVAuthListener.hxx>
+#include "DAVAuthListener.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/DAVResource.hxx b/ucb/source/ucp/webdav/DAVResource.hxx
index 9e43a135973c..e0986b506b7f 100644
--- a/ucb/source/ucp/webdav/DAVResource.hxx
+++ b/ucb/source/ucp/webdav/DAVResource.hxx
@@ -24,8 +24,8 @@
#include <vector>
-#include "rtl/ustring.hxx"
-#include "com/sun/star/uno/Any.hxx"
+#include <rtl/ustring.hxx>
+#include <com/sun/star/uno/Any.hxx>
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/DAVResourceAccess.cxx b/ucb/source/ucp/webdav/DAVResourceAccess.cxx
index 5ce2db603050..531d6d1ce422 100644
--- a/ucb/source/ucp/webdav/DAVResourceAccess.cxx
+++ b/ucb/source/ucp/webdav/DAVResourceAccess.cxx
@@ -17,13 +17,13 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include "osl/diagnose.h"
+#include <osl/diagnose.h>
-#include "com/sun/star/task/XInteractionAbort.hpp"
-#include "com/sun/star/ucb/XWebDAVCommandEnvironment.hpp"
+#include <com/sun/star/task/XInteractionAbort.hpp>
+#include <com/sun/star/ucb/XWebDAVCommandEnvironment.hpp>
-#include "ucbhelper/simpleauthenticationrequest.hxx"
-#include "comphelper/seekableinput.hxx"
+#include <ucbhelper/simpleauthenticationrequest.hxx>
+#include <comphelper/seekableinput.hxx>
#include "DAVAuthListenerImpl.hxx"
#include "DAVResourceAccess.hxx"
diff --git a/ucb/source/ucp/webdav/SerfCallbacks.cxx b/ucb/source/ucp/webdav/SerfCallbacks.cxx
index 25539cea77eb..c0aa58bf0e32 100644
--- a/ucb/source/ucp/webdav/SerfCallbacks.cxx
+++ b/ucb/source/ucp/webdav/SerfCallbacks.cxx
@@ -17,10 +17,10 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfCallbacks.hxx>
+#include "SerfCallbacks.hxx"
-#include <SerfSession.hxx>
-#include <SerfRequestProcessor.hxx>
+#include "SerfSession.hxx"
+#include "SerfRequestProcessor.hxx"
using namespace http_dav_ucp;
diff --git a/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx
index 5e730c061b73..1bc20985f40f 100644
--- a/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfCopyReqProcImpl.hxx>
+#include "SerfCopyReqProcImpl.hxx"
#include <serf.h>
diff --git a/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx
index 75631bb03519..49ecb42571b6 100644
--- a/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SERFCOPYREQPROCIMPL_HXX
#define INCLUDED_SERFCOPYREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx
index 0a0ca3551ea7..928740879b8c 100644
--- a/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfDeleteReqProcImpl.hxx>
+#include "SerfDeleteReqProcImpl.hxx"
#include <serf.h>
diff --git a/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx
index 1cf2ec15ded8..203a67796f9a 100644
--- a/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SERFDELETEREQPROCIMPL_HXX
#define INCLUDED_SERFDELETEREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx
index 3632853c542f..03c686fd725d 100644
--- a/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfGetReqProcImpl.hxx>
+#include "SerfGetReqProcImpl.hxx"
using namespace com::sun::star;
diff --git a/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx
index dd02be1639c4..868d0067d96b 100644
--- a/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx
@@ -20,13 +20,13 @@
#ifndef INCLUDED_SERFGETREQPROCIMPL_HXX
#define INCLUDED_SERFGETREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
#include <vector>
#include <rtl/ustring.hxx>
-#include <DAVResource.hxx>
+#include "DAVResource.hxx"
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
#include <com/sun/star/io/XOutputStream.hpp>
namespace http_dav_ucp
diff --git a/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx
index e48a1a0b04e2..248a5c5d797f 100644
--- a/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfHeadReqProcImpl.hxx>
+#include "SerfHeadReqProcImpl.hxx"
using namespace com::sun::star;
diff --git a/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx
index 404175617631..4902da15f3e4 100644
--- a/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx
@@ -20,13 +20,13 @@
#ifndef INCLUDED_SERFHEADREQPROCIMPL_HXX
#define INCLUDED_SERFHEADREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
#include <vector>
#include <rtl/ustring.hxx>
-#include <DAVResource.hxx>
+#include "DAVResource.hxx"
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
#include <com/sun/star/io/XOutputStream.hpp>
namespace http_dav_ucp
diff --git a/ucb/source/ucp/webdav/SerfLockStore.cxx b/ucb/source/ucp/webdav/SerfLockStore.cxx
index 27ed897bb8f8..80dcd60ca0cd 100644
--- a/ucb/source/ucp/webdav/SerfLockStore.cxx
+++ b/ucb/source/ucp/webdav/SerfLockStore.cxx
@@ -19,9 +19,9 @@
#include <ne_locks.h>
#include <ne_uri.h>
-#include "rtl/ustring.hxx"
-#include "osl/time.h"
-#include "osl/thread.hxx"
+#include <rtl/ustring.hxx>
+#include <osl/time.h>
+#include <osl/thread.hxx>
#include "SerfSession.hxx"
#include "SerfLockStore.hxx"
diff --git a/ucb/source/ucp/webdav/SerfLockStore.hxx b/ucb/source/ucp/webdav/SerfLockStore.hxx
index ac3e951a79f6..4fff5f6a3cd1 100644
--- a/ucb/source/ucp/webdav/SerfLockStore.hxx
+++ b/ucb/source/ucp/webdav/SerfLockStore.hxx
@@ -22,8 +22,8 @@
#define INCLUDED_SERFLOCKSTORE_HXX
#include <map>
-#include "osl/mutex.hxx"
-#include "rtl/ref.hxx"
+#include <osl/mutex.hxx>
+#include <rtl/ref.hxx>
#include "SerfTypes.hxx"
namespace http_dav_ucp
diff --git a/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx
index 0d5a4928e9ba..07c67253ee0b 100644
--- a/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfMkColReqProcImpl.hxx>
+#include "SerfMkColReqProcImpl.hxx"
#include <serf.h>
diff --git a/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx
index 3e1ded50bca4..3f7c75e3e1d7 100644
--- a/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SERFMKCOLREQPROCIMPL_HXX
#define INCLUDED_SERFMKCOLREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx
index 89d6df1046a3..b0cb2ccf8918 100644
--- a/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfMoveReqProcImpl.hxx>
+#include "SerfMoveReqProcImpl.hxx"
#include <serf.h>
diff --git a/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx
index 0ed5d2d85d1e..e7156db5bf84 100644
--- a/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SERFMOVEREQPROCIMPL_HXX
#define INCLUDED_SERFMOVEREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx
index 50accc4252f0..86e2f3636401 100644
--- a/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfPostReqProcImpl.hxx>
+#include "SerfPostReqProcImpl.hxx"
#include <serf.h>
diff --git a/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx
index 9cb6af313088..9ad9beb2aea6 100644
--- a/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx
@@ -20,9 +20,9 @@
#ifndef INCLUDED_SERFPOSTREQPROCIMPL_HXX
#define INCLUDED_SERFPOSTREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
#include <com/sun/star/io/XOutputStream.hpp>
namespace http_dav_ucp
diff --git a/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx
index 5fb7680fc55b..ef02e68fcc27 100644
--- a/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx
@@ -17,11 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfPropFindReqProcImpl.hxx>
-#include <SerfTypes.hxx>
-#include <DAVProperties.hxx>
+#include "SerfPropFindReqProcImpl.hxx"
+#include "SerfTypes.hxx"
+#include "DAVProperties.hxx"
-#include <webdavresponseparser.hxx>
+#include "webdavresponseparser.hxx"
#include <comphelper/seqstream.hxx>
using namespace com::sun::star;
diff --git a/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx
index 35503ba0f812..7f7bd9d9b237 100644
--- a/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx
@@ -20,14 +20,14 @@
#ifndef INCLUDED_SERFPROPFINDREQPROCIMPL_HXX
#define INCLUDED_SERFPROPFINDREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
#include <vector>
#include <rtl/ustring.hxx>
#include "DAVTypes.hxx"
#include "DAVResource.hxx"
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx
index 9b2583a53f6f..d504a6658a3d 100644
--- a/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx
@@ -18,11 +18,11 @@
*/
#include <rtl/ustring.hxx>
-#include <DAVProperties.hxx>
-#include <UCBDeadPropertyValue.hxx>
+#include "DAVProperties.hxx"
+#include "UCBDeadPropertyValue.hxx"
-#include <SerfPropPatchReqProcImpl.hxx>
-#include <SerfTypes.hxx>
+#include "SerfPropPatchReqProcImpl.hxx"
+#include "SerfTypes.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx
index c2ee2d1dac5c..1b9693c57a82 100644
--- a/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx
@@ -20,10 +20,10 @@
#ifndef INCLUDED_SERFPROPPATCHREQPROCIMPL_HXX
#define INCLUDED_SERFPROPPATCHREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
#include <vector>
-#include <DAVTypes.hxx>
+#include "DAVTypes.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx
index 2b83dcf21147..644031835d48 100644
--- a/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx
@@ -19,7 +19,7 @@
#include <rtl/ustring.hxx>
-#include <SerfPutReqProcImpl.hxx>
+#include "SerfPutReqProcImpl.hxx"
#include <serf.h>
diff --git a/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx
index 64474d727358..a0bcccdf22bb 100644
--- a/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_SERFPUTREQPROCIMPL_HXX
#define INCLUDED_SERFPUTREQPROCIMPL_HXX
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfRequestProcessor.cxx b/ucb/source/ucp/webdav/SerfRequestProcessor.cxx
index db4c5ac4ec3c..dbf1ec1a6554 100644
--- a/ucb/source/ucp/webdav/SerfRequestProcessor.cxx
+++ b/ucb/source/ucp/webdav/SerfRequestProcessor.cxx
@@ -17,11 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfRequestProcessor.hxx>
-#include <SerfRequestProcessorImpl.hxx>
-#include <SerfRequestProcessorImplFac.hxx>
-#include <SerfCallbacks.hxx>
-#include <SerfSession.hxx>
+#include "SerfRequestProcessor.hxx"
+#include "SerfRequestProcessorImpl.hxx"
+#include "SerfRequestProcessorImplFac.hxx"
+#include "SerfCallbacks.hxx"
+#include "SerfSession.hxx"
#include <apr_strings.h>
diff --git a/ucb/source/ucp/webdav/SerfRequestProcessor.hxx b/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
index 734cd07bb601..9addb342adcf 100644
--- a/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
+++ b/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
@@ -26,11 +26,11 @@
#include <serf.h>
-#include <DAVTypes.hxx>
-#include <DAVResource.hxx>
-#include <DAVException.hxx>
+#include "DAVTypes.hxx"
+#include "DAVResource.hxx"
+#include "DAVException.hxx"
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
#include <com/sun/star/io/XOutputStream.hpp>
namespace http_dav_ucp
diff --git a/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx b/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx
index 7637684f3425..f5023b8ba751 100644
--- a/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx
+++ b/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx b/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx
index 2d0eb1bc71d0..cea80bd7758f 100644
--- a/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx
+++ b/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx
@@ -23,7 +23,7 @@
#include <serf.h>
#include <sal/types.h>
-#include <DAVRequestEnvironment.hxx>
+#include "DAVRequestEnvironment.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx b/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx
index 3abf5a7ec37b..cbd45a197732 100644
--- a/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx
+++ b/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx
@@ -17,17 +17,17 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <SerfRequestProcessorImplFac.hxx>
-#include <SerfPropFindReqProcImpl.hxx>
-#include <SerfPropPatchReqProcImpl.hxx>
-#include <SerfGetReqProcImpl.hxx>
-#include <SerfHeadReqProcImpl.hxx>
-#include <SerfPutReqProcImpl.hxx>
-#include <SerfPostReqProcImpl.hxx>
-#include <SerfDeleteReqProcImpl.hxx>
-#include <SerfMkColReqProcImpl.hxx>
-#include <SerfCopyReqProcImpl.hxx>
-#include <SerfMoveReqProcImpl.hxx>
+#include "SerfRequestProcessorImplFac.hxx"
+#include "SerfPropFindReqProcImpl.hxx"
+#include "SerfPropPatchReqProcImpl.hxx"
+#include "SerfGetReqProcImpl.hxx"
+#include "SerfHeadReqProcImpl.hxx"
+#include "SerfPutReqProcImpl.hxx"
+#include "SerfPostReqProcImpl.hxx"
+#include "SerfDeleteReqProcImpl.hxx"
+#include "SerfMkColReqProcImpl.hxx"
+#include "SerfCopyReqProcImpl.hxx"
+#include "SerfMoveReqProcImpl.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx b/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx
index 083287ed7c13..f31d96a170d4 100644
--- a/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx
+++ b/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx
@@ -25,8 +25,8 @@
#include "DAVTypes.hxx"
#include "DAVResource.hxx"
-#include <SerfRequestProcessorImpl.hxx>
-#include <SerfInputStream.hxx>
+#include "SerfRequestProcessorImpl.hxx"
+#include "SerfInputStream.hxx"
#include <com/sun/star/io/XOutputStream.hpp>
namespace http_dav_ucp
diff --git a/ucb/source/ucp/webdav/SerfSession.cxx b/ucb/source/ucp/webdav/SerfSession.cxx
index 33c54281fb10..ffef27d93dc4 100644
--- a/ucb/source/ucp/webdav/SerfSession.cxx
+++ b/ucb/source/ucp/webdav/SerfSession.cxx
@@ -25,17 +25,17 @@
#include "comphelper/sequence.hxx"
#include "ucbhelper/simplecertificatevalidationrequest.hxx"
-#include <AprEnv.hxx>
+#include "AprEnv.hxx"
#include <apr_strings.h>
#include "DAVAuthListener.hxx"
-#include <SerfTypes.hxx>
-#include <SerfSession.hxx>
-#include <SerfUri.hxx>
-#include <SerfRequestProcessor.hxx>
-#include <SerfCallbacks.hxx>
-#include <SerfInputStream.hxx>
-#include <UCBDeadPropertyValue.hxx>
+#include "SerfTypes.hxx"
+#include "SerfSession.hxx"
+#include "SerfUri.hxx"
+#include "SerfRequestProcessor.hxx"
+#include "SerfCallbacks.hxx"
+#include "SerfInputStream.hxx"
+#include "UCBDeadPropertyValue.hxx"
#include <com/sun/star/xml/crypto/XSecurityEnvironment.hpp>
#include <com/sun/star/security/XCertificate.hpp>
diff --git a/ucb/source/ucp/webdav/SerfSession.hxx b/ucb/source/ucp/webdav/SerfSession.hxx
index 585a28a2064f..aa75d4507b4d 100644
--- a/ucb/source/ucp/webdav/SerfSession.hxx
+++ b/ucb/source/ucp/webdav/SerfSession.hxx
@@ -25,10 +25,10 @@
#include <vector>
#include <boost/shared_ptr.hpp>
#include <osl/mutex.hxx>
-#include <DAVSession.hxx>
-#include <SerfTypes.hxx>
+#include "DAVSession.hxx"
+#include "SerfTypes.hxx"
//#include "SerfLockStore.hxx"
-#include <SerfUri.hxx>
+#include "SerfUri.hxx"
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
namespace ucbhelper { class ProxyDecider; }
diff --git a/ucb/source/ucp/webdav/SerfUri.cxx b/ucb/source/ucp/webdav/SerfUri.cxx
index a82418c0f175..66aec6d7edc0 100644
--- a/ucb/source/ucp/webdav/SerfUri.cxx
+++ b/ucb/source/ucp/webdav/SerfUri.cxx
@@ -23,7 +23,7 @@
#include <rtl/ustrbuf.hxx>
#include "SerfUri.hxx"
#include "DAVException.hxx"
-#include <AprEnv.hxx>
+#include "AprEnv.hxx"
#include "../inc/urihelper.hxx"
diff --git a/ucb/source/ucp/webdav/SerfUri.hxx b/ucb/source/ucp/webdav/SerfUri.hxx
index 15b0a6be60fb..eb192b53100c 100644
--- a/ucb/source/ucp/webdav/SerfUri.hxx
+++ b/ucb/source/ucp/webdav/SerfUri.hxx
@@ -23,7 +23,7 @@
#include <apr-util/apr_uri.h>
#include <rtl/ustring.hxx>
-#include <DAVException.hxx>
+#include "DAVException.hxx"
namespace http_dav_ucp
{
diff --git a/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx b/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
index 3a953d2e55ef..82096f248fff 100644
--- a/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
+++ b/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
@@ -23,7 +23,7 @@
#include "UCBDeadPropertyValue.hxx"
using namespace http_dav_ucp;
-using namespace com::sun::star;
+using namespace ::com::sun::star;
//////////////////////////////////////////////////////////////////////////
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx
index 6410dd376423..8bc4d690ef73 100644
--- a/ucb/source/ucp/webdav/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav/webdavcontent.cxx
@@ -18,7 +18,7 @@
*/
#include <osl/diagnose.h>
-#include "osl/doublecheckedlocking.h"
+#include <osl/doublecheckedlocking.h>
#include <rtl/uri.hxx>
#include <rtl/ustrbuf.hxx>
#include <comphelper/processfactory.hxx>
@@ -41,9 +41,9 @@
#include <com/sun/star/ucb/InsertCommandArgument.hpp>
#include <com/sun/star/ucb/InteractiveBadTransferURLException.hpp>
#include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp>
-#include "com/sun/star/ucb/InteractiveLockingLockedException.hpp"
-#include "com/sun/star/ucb/InteractiveLockingLockExpiredException.hpp"
-#include "com/sun/star/ucb/InteractiveLockingNotLockedException.hpp"
+#include <com/sun/star/ucb/InteractiveLockingLockedException.hpp>
+#include <com/sun/star/ucb/InteractiveLockingLockExpiredException.hpp>
+#include <com/sun/star/ucb/InteractiveLockingNotLockedException.hpp>
#include <com/sun/star/ucb/InteractiveNetworkConnectException.hpp>
#include <com/sun/star/ucb/InteractiveNetworkGeneralException.hpp>
#include <com/sun/star/ucb/InteractiveNetworkReadException.hpp>
diff --git a/ucb/source/ucp/webdav/webdavprovider.cxx b/ucb/source/ucp/webdav/webdavprovider.cxx
index 0d4d0916bd9d..ad93bf9924f0 100644
--- a/ucb/source/ucp/webdav/webdavprovider.cxx
+++ b/ucb/source/ucp/webdav/webdavprovider.cxx
@@ -21,7 +21,7 @@
#include "webdavprovider.hxx"
#include "webdavcontent.hxx"
-#include "osl/mutex.hxx"
+#include <osl/mutex.hxx>
using namespace com::sun::star;
using namespace http_dav_ucp;
diff --git a/ucb/source/ucp/webdav/webdavresponseparser.cxx b/ucb/source/ucp/webdav/webdavresponseparser.cxx
index f61efc81e220..2da021fb880d 100644
--- a/ucb/source/ucp/webdav/webdavresponseparser.cxx
+++ b/ucb/source/ucp/webdav/webdavresponseparser.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <webdavresponseparser.hxx>
+#include "webdavresponseparser.hxx"
#include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <cppuhelper/implbase2.hxx>
#include <com/sun/star/xml/sax/Parser.hpp>
diff --git a/ucb/source/ucp/webdav/webdavresponseparser.hxx b/ucb/source/ucp/webdav/webdavresponseparser.hxx
index d59cb2ad7a53..f385895a06b7 100644
--- a/ucb/source/ucp/webdav/webdavresponseparser.hxx
+++ b/ucb/source/ucp/webdav/webdavresponseparser.hxx
@@ -22,7 +22,7 @@
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/io/XInputStream.hpp>
-#include <DAVResource.hxx>
+#include "DAVResource.hxx"
#include <vector>
//////////////////////////////////////////////////////////////////////////////