summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/shapeexport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/draw/shapeexport.cxx')
-rw-r--r--xmloff/source/draw/shapeexport.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx
index da40af685b0b..32cf74b8a799 100644
--- a/xmloff/source/draw/shapeexport.cxx
+++ b/xmloff/source/draw/shapeexport.cxx
@@ -2365,7 +2365,7 @@ void XMLShapeExport::ImpExportGraphicObjectShape(
OUString newStreamURL = "vnd.sun.star.Package:";
if (sInternalURL[0] == '#')
{
- newStreamURL += sInternalURL.copy(1, sInternalURL.getLength() - 1);
+ newStreamURL += sInternalURL.subView(1, sInternalURL.getLength() - 1);
}
else
{
@@ -3784,8 +3784,8 @@ static void ImpExportEquations( SvXMLExport& rExport, const uno::Sequence< OUStr
nIndex = aStr.indexOf( '?', nIndex );
if ( nIndex != -1 )
{
- aStr = aStr.copy(0, nIndex + 1) + "f"
- + aStr.copy(nIndex + 1, aStr.getLength() - nIndex - 1);
+ aStr = OUString::Concat(aStr.subView(0, nIndex + 1)) + "f"
+ + aStr.subView(nIndex + 1, aStr.getLength() - nIndex - 1);
nIndex++;
}
} while( nIndex != -1 );