summaryrefslogtreecommitdiff
path: root/sw/source/ui/wrtsh
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-08 15:36:06 +0200
committerNoel Grandin <noel@peralex.com>2013-10-10 09:19:02 +0200
commit36191386f0903f2e8d7b01baf12525d32972b4c0 (patch)
tree78d1fb2d4d6bd8ab652aa32ea5415c48826e54df /sw/source/ui/wrtsh
parenta415487086dd9b372fedc327c2bb5e3824baa5dc (diff)
convert sw/source/ui/inc/n*.hxx from String to OUString
Change-Id: Ic5d034cdc013910f932d1126204c362a269018b0
Diffstat (limited to 'sw/source/ui/wrtsh')
-rw-r--r--sw/source/ui/wrtsh/wrtsh2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/wrtsh/wrtsh2.cxx b/sw/source/ui/wrtsh/wrtsh2.cxx
index 2e91b1368cd1..8b39288554ca 100644
--- a/sw/source/ui/wrtsh/wrtsh2.cxx
+++ b/sw/source/ui/wrtsh/wrtsh2.cxx
@@ -444,10 +444,10 @@ void SwWrtShell::NavigatorPaste( const NaviContentBookmark& rBkmk,
else
{
SwSectionData aSection( FILE_LINK_SECTION, GetUniqueSectionName() );
- String aLinkFile( rBkmk.GetURL().GetToken(0, '#') );
+ String aLinkFile( rBkmk.GetURL().getToken(0, '#') );
aLinkFile += sfx2::cTokenSeparator;
aLinkFile += sfx2::cTokenSeparator;
- aLinkFile += rBkmk.GetURL().GetToken(1, '#');
+ aLinkFile += rBkmk.GetURL().getToken(1, '#');
aSection.SetLinkFileName( aLinkFile );
aSection.SetProtectFlag( true );
const SwSection* pIns = InsertSection( aSection );