summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/tdoc/tdoc_uri.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/tdoc/tdoc_uri.cxx')
-rw-r--r--ucb/source/ucp/tdoc/tdoc_uri.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_uri.cxx b/ucb/source/ucp/tdoc/tdoc_uri.cxx
index 8d5584df2d14..037d4d937cb2 100644
--- a/ucb/source/ucp/tdoc/tdoc_uri.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_uri.cxx
@@ -54,7 +54,7 @@ void Uri::init() const
}
// Check for proper scheme. (Scheme is case insensitive.)
- rtl::OUString aScheme
+ OUString aScheme
= m_aUri.copy( 0, TDOC_URL_SCHEME_LENGTH ).toAsciiLowerCase();
if ( aScheme != TDOC_URL_SCHEME )
{
@@ -116,7 +116,7 @@ void Uri::init() const
if ( nSlash != - 1 )
m_aInternalPath = m_aPath.copy( nSlash );
else
- m_aInternalPath = rtl::OUString("/");
+ m_aInternalPath = OUString("/");
}
m_eState = VALID;