summaryrefslogtreecommitdiff
path: root/extensions/source/svg/svgaction.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/svg/svgaction.cxx')
-rw-r--r--extensions/source/svg/svgaction.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/svg/svgaction.cxx b/extensions/source/svg/svgaction.cxx
index 97e1921542c2..14cd09c7fa20 100644
--- a/extensions/source/svg/svgaction.cxx
+++ b/extensions/source/svg/svgaction.cxx
@@ -842,19 +842,19 @@ void SVGActionWriter::ImplWriteText( const Point& rPos, const String& rText,
{
String aTransform;
- aTransform = NMSP_RTL::OUString(RTL_CONSTASCII_USTRINGPARAM("translate"));
+ aTransform = NMSP_RTL::OUString::createFromAscii( "translate" );
aTransform += '(';
aTransform += String( GetValueString( aPt.X(), mbDoublePoints ) );
aTransform += ',';
aTransform += String( GetValueString( aPt.Y(), mbDoublePoints ) );
aTransform += ')';
- aTransform += String( NMSP_RTL::OUString(RTL_CONSTASCII_USTRINGPARAM(" rotate")) );
+ aTransform += String( NMSP_RTL::OUString::createFromAscii( " rotate" ) );
aTransform += '(';
aTransform += String( NMSP_RTL::OUString::valueOf( rFont.GetOrientation() * -0.1 ) );
aTransform += ')';
- aTransform += String( NMSP_RTL::OUString(RTL_CONSTASCII_USTRINGPARAM(" translate")) );
+ aTransform += String( NMSP_RTL::OUString::createFromAscii( " translate" ) );
aTransform += '(';
aTransform += String( GetValueString( -aPt.X(), mbDoublePoints ) );
aTransform += ',';