summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLTextMasterPageContext.cxx
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-03-02 21:32:41 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2013-03-02 21:36:10 +0100
commitb15f095293c6127ecaef2f0fa3a1683e72392835 (patch)
treea8aed21f8cbb708d5292f980df8db10e2305eb6f /xmloff/source/text/XMLTextMasterPageContext.cxx
parentdadfa4bbbe9107cd5b8aad43dace0692ca8d63bf (diff)
removed RTL_CONSTASCII_(U)STRINGPARAM xmloff(text)
Change-Id: I54af0ac7a3454259540e89267200d801b17ec179
Diffstat (limited to 'xmloff/source/text/XMLTextMasterPageContext.cxx')
-rw-r--r--xmloff/source/text/XMLTextMasterPageContext.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/xmloff/source/text/XMLTextMasterPageContext.cxx b/xmloff/source/text/XMLTextMasterPageContext.cxx
index 0b1c2ff798c6..9f97d4b72828 100644
--- a/xmloff/source/text/XMLTextMasterPageContext.cxx
+++ b/xmloff/source/text/XMLTextMasterPageContext.cxx
@@ -52,8 +52,7 @@ Reference < XStyle > XMLTextMasterPageContext::Create()
if( xFactory.is() )
{
Reference < XInterface > xIfc =
- xFactory->createInstance(OUString(RTL_CONSTASCII_USTRINGPARAM(
- "com.sun.star.style.PageStyle")) );
+ xFactory->createInstance(OUString("com.sun.star.style.PageStyle"));
if( xIfc.is() )
xNewStyle = Reference < XStyle >( xIfc, UNO_QUERY );
}
@@ -67,9 +66,9 @@ XMLTextMasterPageContext::XMLTextMasterPageContext( SvXMLImport& rImport,
const Reference< XAttributeList > & xAttrList,
sal_Bool bOverwrite )
: SvXMLStyleContext( rImport, nPrfx, rLName, xAttrList, XML_STYLE_FAMILY_MASTER_PAGE )
-, sIsPhysical( RTL_CONSTASCII_USTRINGPARAM( "IsPhysical" ) )
-, sPageStyleLayout( RTL_CONSTASCII_USTRINGPARAM( "PageStyleLayout" ) )
-, sFollowStyle( RTL_CONSTASCII_USTRINGPARAM( "FollowStyle" ) )
+, sIsPhysical( "IsPhysical" )
+, sPageStyleLayout( "PageStyleLayout" )
+, sFollowStyle( "FollowStyle" )
, bInsertHeader( sal_False )
, bInsertFooter( sal_False )
, bInsertHeaderLeft( sal_False )