diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-27 13:31:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:09 +0200 |
commit | fd7ef5f6386d6ba6951c88ebfafb107f1fa63400 (patch) | |
tree | a33a3997f30d70f1012e5fcc45eb711e4207be54 /sfx2/source/control | |
parent | e7cd49ebb08a839161429519d6a0e0eda4839d41 (diff) |
convert include/sfx2/doctempl.hxx from String to OUString
Change-Id: I0d4232afa37539bafd779b1cc9a323aabb1d6b0e
Diffstat (limited to 'sfx2/source/control')
-rw-r--r-- | sfx2/source/control/templatelocalview.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/control/templatelocalview.cxx b/sfx2/source/control/templatelocalview.cxx index 994c8c2cdcf5..8dcbd3263e38 100644 --- a/sfx2/source/control/templatelocalview.cxx +++ b/sfx2/source/control/templatelocalview.cxx @@ -588,7 +588,7 @@ bool TemplateLocalView::copyFrom(const sal_uInt16 nRegionItemId, const BitmapEx nDocId = (pRegionItem->maTemplates.back()).nDocId+1; } - String aPath(rPath); + OUString aPath(rPath); sal_uInt16 nRegionId = maRegions[i]->mnRegionId; if (mpDocTemplates->CopyFrom(nRegionId,nDocId,aPath)) @@ -628,7 +628,7 @@ bool TemplateLocalView::copyFrom(const OUString &rPath) sal_uInt16 nDocId = 0; sal_uInt16 nRegionId = pRegItem->mnRegionId; - String aPath(rPath); + OUString aPath(rPath); if (!pRegItem->maTemplates.empty()) nDocId = (pRegItem->maTemplates.back()).nDocId+1; @@ -659,7 +659,7 @@ bool TemplateLocalView::copyFrom (TemplateContainerItem *pItem, const OUString & sal_uInt16 nId = 1; sal_uInt16 nDocId = 0; sal_uInt16 nRegionId = pItem->mnRegionId; - String aPath(rPath); + OUString aPath(rPath); if (!pItem->maTemplates.empty()) { |