summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /ucb/source/ucp/webdav/SerfRequestProcessor.hxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'ucb/source/ucp/webdav/SerfRequestProcessor.hxx')
-rw-r--r--ucb/source/ucp/webdav/SerfRequestProcessor.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/ucb/source/ucp/webdav/SerfRequestProcessor.hxx b/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
index 8b7fcaded928..734cd07bb601 100644
--- a/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
+++ b/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
@@ -43,13 +43,13 @@ class SerfRequestProcessor
{
public:
SerfRequestProcessor( SerfSession& rSerfSession,
- const rtl::OUString & inPath,
+ const OUString & inPath,
const bool bUseChunkedEncoding );
~SerfRequestProcessor();
// PROPFIND - allprop & named
bool processPropFind( const Depth inDepth,
- const std::vector< ::rtl::OUString > & inPropNames,
+ const std::vector< OUString > & inPropNames,
std::vector< DAVResource > & ioResources,
apr_status_t& outSerfStatus );
@@ -68,7 +68,7 @@ public:
// GET inclusive header fields
bool processGet( const com::sun::star::uno::Reference< SerfInputStream >& xioInStrm,
- const std::vector< ::rtl::OUString > & inHeaderNames,
+ const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
apr_status_t& outSerfStatus );
@@ -78,12 +78,12 @@ public:
// GET inclusive header fields
bool processGet( const com::sun::star::uno::Reference< com::sun::star::io::XOutputStream >& xioOutStrm,
- const std::vector< ::rtl::OUString > & inHeaderNames,
+ const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
apr_status_t& outSerfStatus );
// HEAD
- bool processHead( const std::vector< ::rtl::OUString > & inHeaderNames,
+ bool processHead( const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
apr_status_t& outSerfStatus );
@@ -95,16 +95,16 @@ public:
// POST
bool processPost( const char* inData,
apr_size_t inDataLen,
- const rtl::OUString & inContentType,
- const rtl::OUString & inReferer,
+ const OUString & inContentType,
+ const OUString & inReferer,
const com::sun::star::uno::Reference< SerfInputStream >& xioInStrm,
apr_status_t& outSerfStatus );
// POST
bool processPost( const char* inData,
apr_size_t inDataLen,
- const rtl::OUString & inContentType,
- const rtl::OUString & inReferer,
+ const OUString & inContentType,
+ const OUString & inReferer,
const com::sun::star::uno::Reference< com::sun::star::io::XOutputStream >& xioOutStrm,
apr_status_t& outSerfStatus );
@@ -115,12 +115,12 @@ public:
bool processMkCol( apr_status_t& outSerfStatus );
// COPY
- bool processCopy( const rtl::OUString & inDestinationPath,
+ bool processCopy( const OUString & inDestinationPath,
const bool inOverwrite,
apr_status_t& outSerfStatus );
// MOVE
- bool processMove( const rtl::OUString & inDestinationPath,
+ bool processMove( const OUString & inDestinationPath,
const bool inOverwrite,
apr_status_t& outSerfStatus );
@@ -165,8 +165,8 @@ public:
DAVException* mpDAVException;
sal_uInt16 mnHTTPStatusCode;
- rtl::OUString mHTTPStatusCodeText;
- rtl::OUString mRedirectLocation;
+ OUString mHTTPStatusCodeText;
+ OUString mRedirectLocation;
sal_uInt8 mnSuccessfulCredentialAttempts;
bool mbInputOfCredentialsAborted;