summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-curl/PropfindCache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-curl/PropfindCache.cxx')
-rw-r--r--ucb/source/ucp/webdav-curl/PropfindCache.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-curl/PropfindCache.cxx b/ucb/source/ucp/webdav-curl/PropfindCache.cxx
index 7196bd791d9c..da8499e1526d 100644
--- a/ucb/source/ucp/webdav-curl/PropfindCache.cxx
+++ b/ucb/source/ucp/webdav-curl/PropfindCache.cxx
@@ -8,6 +8,8 @@
*/
#include <osl/time.h>
+
+#include <utility>
#include "PropfindCache.hxx"
namespace http_dav_ucp
@@ -22,9 +24,9 @@ namespace http_dav_ucp
{
}
- PropertyNames::PropertyNames( const OUString& rURL ) :
+ PropertyNames::PropertyNames( OUString aURL ) :
m_nStaleTime( 0 ),
- m_sURL( rURL ),
+ m_sURL(std::move( aURL )),
m_aPropertiesNames()
{
}