summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/inc
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/inc
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/inc')
-rw-r--r--ucb/source/ucp/inc/urihelper.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/ucb/source/ucp/inc/urihelper.hxx b/ucb/source/ucp/inc/urihelper.hxx
index b39d9ed676e4..1bbe511be5f2 100644
--- a/ucb/source/ucp/inc/urihelper.hxx
+++ b/ucb/source/ucp/inc/urihelper.hxx
@@ -28,7 +28,7 @@
namespace ucb_impl { namespace urihelper {
- inline ::rtl::OUString encodeSegment( const ::rtl::OUString & rSegment )
+ inline OUString encodeSegment( const OUString & rSegment )
{
return rtl::Uri::encode( rSegment,
rtl_UriCharClassPchar,
@@ -36,18 +36,18 @@ namespace ucb_impl { namespace urihelper {
RTL_TEXTENCODING_UTF8 );
}
- inline ::rtl::OUString decodeSegment( const rtl::OUString& rSegment )
+ inline OUString decodeSegment( const OUString& rSegment )
{
return rtl::Uri::decode( rSegment,
rtl_UriDecodeWithCharset,
RTL_TEXTENCODING_UTF8 );
}
- inline ::rtl::OUString encodeURI( const ::rtl::OUString & rURI )
+ inline OUString encodeURI( const OUString & rURI )
{
- rtl::OUString aFragment;
- rtl::OUString aParams;
- rtl::OUString aURI;
+ OUString aFragment;
+ OUString aParams;
+ OUString aURI;
sal_Int32 nFragment = rURI.lastIndexOf( sal_Unicode( '#' ) );
if ( nFragment != -1 )
@@ -81,7 +81,7 @@ namespace ucb_impl { namespace urihelper {
rtl_UriEncodeKeepEscapes, /* #i81690# */
RTL_TEXTENCODING_UTF8 );
- rtl::OUStringBuffer aResult;
+ OUStringBuffer aResult;
sal_Int32 nIndex = 0;
do
{