summaryrefslogtreecommitdiff
path: root/xmloff/source/style/styleexp.cxx
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-02-26 20:17:25 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2013-02-26 20:18:43 +0100
commitf03daee6b44c22107f90a99ad83d8e60023e0f71 (patch)
tree46a24020a24cff541cf773d7995051d371fcc662 /xmloff/source/style/styleexp.cxx
parentaf8cc0b4b40efcb9e05b3c7a94a26d2fc503babd (diff)
removed RTL_CONSTASCII_(U)STRINGPARAM
Change-Id: I8ab8c32ee561a14dcb05b9cf04387beadccd314a
Diffstat (limited to 'xmloff/source/style/styleexp.cxx')
-rw-r--r--xmloff/source/style/styleexp.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/source/style/styleexp.cxx b/xmloff/source/style/styleexp.cxx
index 1cb096c22eff..b9ca2ad2e67e 100644
--- a/xmloff/source/style/styleexp.cxx
+++ b/xmloff/source/style/styleexp.cxx
@@ -56,11 +56,11 @@ XMLStyleExport::XMLStyleExport(
const OUString& rPoolStyleName,
SvXMLAutoStylePoolP *pAutoStyleP ) :
rExport( rExp ),
- sIsPhysical( RTL_CONSTASCII_USTRINGPARAM( "IsPhysical" ) ),
- sIsAutoUpdate( RTL_CONSTASCII_USTRINGPARAM( "IsAutoUpdate" ) ),
- sFollowStyle( RTL_CONSTASCII_USTRINGPARAM( "FollowStyle" ) ),
- sNumberingStyleName( RTL_CONSTASCII_USTRINGPARAM( "NumberingStyleName" ) ),
- sOutlineLevel( RTL_CONSTASCII_USTRINGPARAM( "OutlineLevel" ) ),
+ sIsPhysical( "IsPhysical" ),
+ sIsAutoUpdate( "IsAutoUpdate" ),
+ sFollowStyle( "FollowStyle" ),
+ sNumberingStyleName( "NumberingStyleName" ),
+ sOutlineLevel( "OutlineLevel" ),
sPoolStyleName( rPoolStyleName ),
pAutoStylePool( pAutoStyleP )
{
@@ -195,7 +195,7 @@ sal_Bool XMLStyleExport::exportStyle(
{
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_DEFAULT_OUTLINE_LEVEL,
- OUString( RTL_CONSTASCII_USTRINGPARAM( "" )));
+ OUString( "" ));
}
}
}
@@ -246,7 +246,7 @@ sal_Bool XMLStyleExport::exportStyle(
Reference< XPropertySet > xNumRulePropSet
(xNumRule, UNO_QUERY);
xNumRulePropSet->getPropertyValue(
- OUString(RTL_CONSTASCII_USTRINGPARAM("Name")) )
+ OUString("Name") )
>>= sOutlineName;
bSuppressListStyle = ( sListName == sOutlineName );
}
@@ -299,7 +299,7 @@ sal_Bool XMLStyleExport::exportStyle(
if ( bNoInheritedListStyle )
GetExport().AddAttribute( XML_NAMESPACE_STYLE,
XML_LIST_STYLE_NAME,
- OUString( RTL_CONSTASCII_USTRINGPARAM( "" )));
+ OUString( "" ));
}
}