diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:46:49 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:46:49 +0000 |
commit | 1794e802a040ea130a7d4da3e9c208139bfd9309 (patch) | |
tree | 907e9bf9382d8482fc061c1ec670149f8d549b3b /xmloff | |
parent | fe8d0a6fc0086f92408a17276f6c43bebd5019ad (diff) |
INTEGRATION: CWS warnings01 (1.10.32); FILE MERGED
2005/11/03 17:47:11 cl 1.10.32.1: warning free code changes for unxlngi6
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLTextMasterPageContext.cxx | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/xmloff/source/text/XMLTextMasterPageContext.cxx b/xmloff/source/text/XMLTextMasterPageContext.cxx index ac9c680d71d8..2a76d35127a2 100644 --- a/xmloff/source/text/XMLTextMasterPageContext.cxx +++ b/xmloff/source/text/XMLTextMasterPageContext.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XMLTextMasterPageContext.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: rt $ $Date: 2005-09-09 15:24:04 $ + * last change: $Author: hr $ $Date: 2006-06-19 18:46:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -102,20 +102,19 @@ TYPEINIT1( XMLTextMasterPageContext, SvXMLStyleContext ); XMLTextMasterPageContext::XMLTextMasterPageContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const Reference< XAttributeList > & xAttrList, - sal_Bool bOverwrite ) : - SvXMLStyleContext( rImport, nPrfx, rLName, xAttrList, XML_STYLE_FAMILY_MASTER_PAGE ), - sIsPhysical( RTL_CONSTASCII_USTRINGPARAM( "IsPhysical" ) ), - sFollowStyle( RTL_CONSTASCII_USTRINGPARAM( "FollowStyle" ) ), - sPageStyleLayout( RTL_CONSTASCII_USTRINGPARAM( "PageStyleLayout" ) ), - sPageMasterName(), - bInsertHeader( sal_False ), - bInsertFooter( sal_False ), - bInsertHeaderLeft( sal_False ), - bInsertFooterLeft( sal_False ), - bHeaderInserted( sal_False ), - bFooterInserted( sal_False ), - bHeaderLeftInserted( sal_False ), - bFooterLeftInserted( sal_False ) + 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" ) ) +, bInsertHeader( sal_False ) +, bInsertFooter( sal_False ) +, bInsertHeaderLeft( sal_False ) +, bInsertFooterLeft( sal_False ) +, bHeaderInserted( sal_False ) +, bFooterInserted( sal_False ) +, bHeaderLeftInserted( sal_False ) +, bFooterLeftInserted( sal_False ) { OUString sName, sDisplayName; sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0; |