diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:45:55 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 17:45:55 +0000 |
commit | 5fac207c0b7cca549697a053e7233173eb76bc05 (patch) | |
tree | 7bdef7112b73f5246746491ffc2a898321f33cc6 | |
parent | 2a72dea03a4aa6b2db534b46057d2a3e9f5d3e60 (diff) |
INTEGRATION: CWS warnings01 (1.8.32); FILE MERGED
2005/11/17 15:19:25 pl 1.8.32.2: #i55991# removed warnings
2005/11/03 17:47:11 cl 1.8.32.1: warning free code changes for unxlngi6
-rw-r--r-- | xmloff/source/text/XMLTextHeaderFooterContext.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/text/XMLTextHeaderFooterContext.cxx b/xmloff/source/text/XMLTextHeaderFooterContext.cxx index 5ecfcb70dcfc..6478a3e9faf3 100644 --- a/xmloff/source/text/XMLTextHeaderFooterContext.cxx +++ b/xmloff/source/text/XMLTextHeaderFooterContext.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XMLTextHeaderFooterContext.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-09 15:21:48 $ + * last change: $Author: hr $ $Date: 2006-06-19 18:45:55 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -73,7 +73,7 @@ TYPEINIT1( XMLTextHeaderFooterContext, SvXMLImportContext ); XMLTextHeaderFooterContext::XMLTextHeaderFooterContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const uno::Reference< - xml::sax::XAttributeList > & xAttrList, + xml::sax::XAttributeList > &, const Reference < XPropertySet > & rPageStylePropSet, sal_Bool bFooter, sal_Bool bLft ) : SvXMLImportContext( rImport, nPrfx, rLName ), @@ -151,7 +151,7 @@ SvXMLImportContext *XMLTextHeaderFooterContext::CreateChildContext( // The content has not to be removed, because the header // or footer is empty already. - bRemoveContent; + bRemoveContent = sal_False; } // If a header or footer is not shared, share it now. @@ -172,8 +172,8 @@ SvXMLImportContext *XMLTextHeaderFooterContext::CreateChildContext( if( bRemoveContent ) { - OUString sText; - xText->setString( sText ); + OUString aText; + xText->setString( aText ); } UniReference < XMLTextImportHelper > xTxtImport = |