Kaydet (Commit) e7d9455c authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS warnings01 (1.15.32); FILE MERGED

2006/05/23 19:18:55 sb 1.15.32.3: RESYNC: (1.15-1.16); FILE MERGED
2005/11/03 17:47:07 cl 1.15.32.2: warning free code changes for unxlngi6
2005/11/02 14:57:56 cl 1.15.32.1: warning free code changes
üst 504020b0
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: XMLFootnoteConfigurationImportContext.cxx,v $ * $RCSfile: XMLFootnoteConfigurationImportContext.cxx,v $
* *
* $Revision: 1.16 $ * $Revision: 1.17 $
* *
* last change: $Author: vg $ $Date: 2006-04-06 13:41:02 $ * last change: $Author: hr $ $Date: 2006-06-19 18:39:14 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
#endif #endif
#ifndef _RTL_USTRING #ifndef _RTL_USTRING
#include <rtl/ustring> #include <rtl/ustring.hxx>
#endif #endif
#ifndef _RTL_USTRBUF_HXX_ #ifndef _RTL_USTRBUF_HXX_
...@@ -146,11 +146,11 @@ XMLFootnoteConfigHelper::XMLFootnoteConfigHelper( ...@@ -146,11 +146,11 @@ XMLFootnoteConfigHelper::XMLFootnoteConfigHelper(
sal_uInt16 nPrfx, sal_uInt16 nPrfx,
const OUString& rLName, const OUString& rLName,
XMLFootnoteConfigurationImportContext& rConfigImport, XMLFootnoteConfigurationImportContext& rConfigImport,
sal_Bool bBegin) : sal_Bool bBegin)
SvXMLImportContext(rImport, nPrfx, rLName), : SvXMLImportContext(rImport, nPrfx, rLName)
rConfig(rConfigImport), , sBuffer()
sBuffer(), , rConfig(rConfigImport)
bIsBegin(bBegin) , bIsBegin(bBegin)
{ {
} }
...@@ -184,40 +184,27 @@ XMLFootnoteConfigurationImportContext::XMLFootnoteConfigurationImportContext( ...@@ -184,40 +184,27 @@ XMLFootnoteConfigurationImportContext::XMLFootnoteConfigurationImportContext(
SvXMLImport& rImport, SvXMLImport& rImport,
sal_uInt16 nPrfx, sal_uInt16 nPrfx,
const OUString& rLocalName, const OUString& rLocalName,
const Reference<XAttributeList> & xAttrList) : const Reference<XAttributeList> & xAttrList)
SvXMLStyleContext(rImport, nPrfx, rLocalName, xAttrList, : SvXMLStyleContext(rImport, nPrfx, rLocalName, xAttrList, XML_STYLE_FAMILY_TEXT_FOOTNOTECONFIG)
XML_STYLE_FAMILY_TEXT_FOOTNOTECONFIG), , sPropertyAnchorCharStyleName(RTL_CONSTASCII_USTRINGPARAM("AnchorCharStyleName"))
bIsEndnote(sal_False), , sPropertyCharStyleName(RTL_CONSTASCII_USTRINGPARAM("CharStyleName"))
pAttrTokenMap(NULL), , sPropertyNumberingType(RTL_CONSTASCII_USTRINGPARAM("NumberingType"))
sCitationStyle(), , sPropertyPageStyleName(RTL_CONSTASCII_USTRINGPARAM("PageStyleName"))
sAnchorStyle(), , sPropertyParagraphStyleName(RTL_CONSTASCII_USTRINGPARAM("ParaStyleName"))
sDefaultStyle(), , sPropertyPrefix(RTL_CONSTASCII_USTRINGPARAM("Prefix"))
sPageStyle(), , sPropertyStartAt(RTL_CONSTASCII_USTRINGPARAM("StartAt"))
sPrefix(), , sPropertySuffix(RTL_CONSTASCII_USTRINGPARAM("Suffix"))
sSuffix(), , sPropertyPositionEndOfDoc(RTL_CONSTASCII_USTRINGPARAM("PositionEndOfDoc"))
sBeginNotice(), , sPropertyFootnoteCounting(RTL_CONSTASCII_USTRINGPARAM("FootnoteCounting"))
sEndNotice(), , sPropertyEndNotice(RTL_CONSTASCII_USTRINGPARAM("EndNotice"))
sNumFormat(RTL_CONSTASCII_USTRINGPARAM("1")), , sPropertyBeginNotice(RTL_CONSTASCII_USTRINGPARAM("BeginNotice"))
sNumSync(RTL_CONSTASCII_USTRINGPARAM("false")), , sNumFormat(RTL_CONSTASCII_USTRINGPARAM("1"))
nOffset(0), , sNumSync(RTL_CONSTASCII_USTRINGPARAM("false"))
nNumbering(FootnoteNumbering::PER_PAGE), , pAttrTokenMap(NULL)
bPosition(sal_False), , nOffset(0)
sPropertyCharStyleName(RTL_CONSTASCII_USTRINGPARAM("CharStyleName")), , nNumbering(FootnoteNumbering::PER_PAGE)
sPropertyAnchorCharStyleName( , bPosition(sal_False)
RTL_CONSTASCII_USTRINGPARAM("AnchorCharStyleName")), , bIsEndnote(sal_False)
sPropertyNumberingType(RTL_CONSTASCII_USTRINGPARAM("NumberingType")),
sPropertyPageStyleName(RTL_CONSTASCII_USTRINGPARAM("PageStyleName")),
sPropertyParagraphStyleName(
RTL_CONSTASCII_USTRINGPARAM("ParaStyleName")),
sPropertyPrefix(RTL_CONSTASCII_USTRINGPARAM("Prefix")),
sPropertyStartAt(RTL_CONSTASCII_USTRINGPARAM("StartAt")),
sPropertySuffix(RTL_CONSTASCII_USTRINGPARAM("Suffix")),
sPropertyPositionEndOfDoc(
RTL_CONSTASCII_USTRINGPARAM("PositionEndOfDoc")),
sPropertyFootnoteCounting(
RTL_CONSTASCII_USTRINGPARAM("FootnoteCounting")),
sPropertyEndNotice(RTL_CONSTASCII_USTRINGPARAM("EndNotice")),
sPropertyBeginNotice(RTL_CONSTASCII_USTRINGPARAM("BeginNotice"))
{ {
sal_Int16 nLength = xAttrList->getLength(); sal_Int16 nLength = xAttrList->getLength();
for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++) for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment