summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon/NeonUri.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-neon/NeonUri.cxx')
-rw-r--r--ucb/source/ucp/webdav-neon/NeonUri.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonUri.cxx b/ucb/source/ucp/webdav-neon/NeonUri.cxx
index 530306c2badc..5886429d2089 100644
--- a/ucb/source/ucp/webdav-neon/NeonUri.cxx
+++ b/ucb/source/ucp/webdav-neon/NeonUri.cxx
@@ -268,7 +268,7 @@ void NeonUri::calculateURI ()
return aTemp;
}
else
- return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM ("/"));
+ return rtl::OUString("/");
}
bool NeonUri::operator== ( const NeonUri & rOther ) const
@@ -284,7 +284,7 @@ bool NeonUri::operator== ( const NeonUri & rOther ) const
void NeonUri::AppendPath (const rtl::OUString& rPath)
{
if (mPath.lastIndexOf ('/') != mPath.getLength () - 1)
- mPath += rtl::OUString(RTL_CONSTASCII_USTRINGPARAM ("/"));
+ mPath += rtl::OUString("/");
mPath += rPath;
calculateURI ();