diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-13 15:03:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-14 08:17:29 +0200 |
commit | 15113ea855baab1f8319a7125cec90d203904cb7 (patch) | |
tree | 73d86eab424567cc5faa21dbb69d7937466c65f7 /sc/source/ui/vba/vbahyperlink.cxx | |
parent | 39c8da8c86decbe3443a786ad445a18b0078daa3 (diff) |
remove unnecessary sal_Unicode casts in SC module
Change-Id: Iee7688ea60b4d45d3e6725afd46e9cbb5ebe26c5
Diffstat (limited to 'sc/source/ui/vba/vbahyperlink.cxx')
-rw-r--r-- | sc/source/ui/vba/vbahyperlink.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbahyperlink.cxx b/sc/source/ui/vba/vbahyperlink.cxx index f88ebb600b84..a021ec568569 100644 --- a/sc/source/ui/vba/vbahyperlink.cxx +++ b/sc/source/ui/vba/vbahyperlink.cxx @@ -219,7 +219,7 @@ void ScVbaHyperlink::setUrlComponents( const UrlComponents& rUrlComp ) throw (un ensureTextField(); OUStringBuffer aUrl( rUrlComp.first ); if( !rUrlComp.second.isEmpty() ) - aUrl.append( sal_Unicode( '#' ) ).append( rUrlComp.second ); + aUrl.append( '#' ).append( rUrlComp.second ); mxTextField->setPropertyValue("URL", uno::Any( aUrl.makeStringAndClear() ) ); } |