diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-07-03 21:18:15 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-07-03 21:20:58 -0300 |
commit | c6c99966cd4515b574e9cd21e89954dabf56009a (patch) | |
tree | f700771b96649bd421329b127fc25ed85fe1c86f /svl/source/misc/lockfilecommon.cxx | |
parent | c675575ce507320b6f866d02fd7eee68462f7823 (diff) |
Get rid of RTL_CONSTASCII_USTRINGPARAM in svl/
Change-Id: I64f3f966011bf07a2ee0c7327feb4a46df595210
Diffstat (limited to 'svl/source/misc/lockfilecommon.cxx')
-rw-r--r-- | svl/source/misc/lockfilecommon.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/misc/lockfilecommon.cxx b/svl/source/misc/lockfilecommon.cxx index e6597bd4db65..7df914d7f6f5 100644 --- a/svl/source/misc/lockfilecommon.cxx +++ b/svl/source/misc/lockfilecommon.cxx @@ -65,7 +65,7 @@ LockFileCommon::LockFileCommon( const ::rtl::OUString& aOrigURL, const uno::Refe ::rtl::OUString aShareURLString = aDocURL.GetPartBeforeLastName(); aShareURLString += aPrefix; aShareURLString += aDocURL.GetName(); - aShareURLString += ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "%23" ) ); // '#' + aShareURLString += "%23"; // '#' m_aURL = INetURLObject( aShareURLString ).GetMainURL( INetURLObject::NO_DECODE ); } @@ -193,7 +193,7 @@ uno::Sequence< ::rtl::OUString > LockFileCommon::ParseEntry( const uno::Sequence SvtUserOptions aUserOpt; ::rtl::OUString aName = aUserOpt.GetFirstName(); if ( !aName.isEmpty() ) - aName += ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( " " ) ); + aName += " "; aName += aUserOpt.GetLastName(); return aName; |