summaryrefslogtreecommitdiff
path: root/xmloff/source/transform
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/transform')
-rw-r--r--xmloff/source/transform/StyleOASISTContext.cxx2
-rw-r--r--xmloff/source/transform/StyleOOoTContext.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/transform/StyleOASISTContext.cxx b/xmloff/source/transform/StyleOASISTContext.cxx
index f5ef3fe0f2b7..f529f3ae1c67 100644
--- a/xmloff/source/transform/StyleOASISTContext.cxx
+++ b/xmloff/source/transform/StyleOASISTContext.cxx
@@ -502,7 +502,7 @@ void XMLPropertiesTContext_Impl::StartElement(
{
if ( !aNewAttrValue.isEmpty() )
{
- aNewAttrValue += OUString(" " );
+ aNewAttrValue += " ";
}
if ( IsXMLToken( aToken, XML_HORIZONTAL_ON_EVEN ) )
diff --git a/xmloff/source/transform/StyleOOoTContext.cxx b/xmloff/source/transform/StyleOOoTContext.cxx
index 7543c10f5a06..99f5971e231d 100644
--- a/xmloff/source/transform/StyleOOoTContext.cxx
+++ b/xmloff/source/transform/StyleOOoTContext.cxx
@@ -910,7 +910,7 @@ void XMLPropertiesOOoTContext_Impl::StartElement(
{
if ( !aStyleMirrorAttrValue.isEmpty() )
{
- aStyleMirrorAttrValue += OUString(" " );
+ aStyleMirrorAttrValue += " ";
}
if ( IsXMLToken( aToken, XML_HORIZONTAL_ON_LEFT_PAGES ) )
@@ -990,7 +990,7 @@ void XMLPropertiesOOoTContext_Impl::StartElement(
if( bMoveProtect && -1 == aProtectAttrValue.indexOf( rPosition ) )
{
if( !aProtectAttrValue.isEmpty() )
- aProtectAttrValue += OUString( sal_Unicode( ' ' ) );
+ aProtectAttrValue += " ";
aProtectAttrValue += rPosition;
}
@@ -998,7 +998,7 @@ void XMLPropertiesOOoTContext_Impl::StartElement(
if( bSizeProtect && -1 == aProtectAttrValue.indexOf( rSize ) )
{
if( !aProtectAttrValue.isEmpty() )
- aProtectAttrValue += OUString( sal_Unicode( ' ' ) );
+ aProtectAttrValue += " ";
aProtectAttrValue += rSize;
}