diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-06 12:32:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-06 12:35:29 +0100 |
commit | 83e97fef3fa4de900eda35d02168fcae01c85eed (patch) | |
tree | 0d6e7e0fddc4ee0e5a1518a67290c597cbc9c147 /xmloff | |
parent | cb1183510c605a5d63fdc9fec6735ac5e8db92ce (diff) |
convert ImportStoredChapterNumberingRules to XFastParser
Change-Id: I80ceed4bf2e767b86aedd1dd7bf4f892e3077138
Reviewed-on: https://gerrit.libreoffice.org/82132
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlnumi.cxx | 10 | ||||
-rw-r--r-- | xmloff/source/style/xmlstyle.cxx | 14 |
2 files changed, 24 insertions, 0 deletions
diff --git a/xmloff/source/style/xmlnumi.cxx b/xmloff/source/style/xmlnumi.cxx index 0da58ed8ab11..710bb3ede574 100644 --- a/xmloff/source/style/xmlnumi.cxx +++ b/xmloff/source/style/xmlnumi.cxx @@ -1022,6 +1022,16 @@ SvxXMLListStyleContext::SvxXMLListStyleContext( SvXMLImport& rImport, { } +SvxXMLListStyleContext::SvxXMLListStyleContext( SvXMLImport& rImport, + sal_Int32 nElement, + const css::uno::Reference< css::xml::sax::XFastAttributeList > & xAttrList, + bool bOutl ) +: SvXMLStyleContext( rImport, nElement, xAttrList, bOutl ? XML_STYLE_FAMILY_TEXT_OUTLINE : XML_STYLE_FAMILY_TEXT_LIST ) +, bConsecutive( false ) +, bOutline( bOutl ) +{ +} + SvxXMLListStyleContext::~SvxXMLListStyleContext() {} SvXMLImportContextRef SvxXMLListStyleContext::CreateChildContext( diff --git a/xmloff/source/style/xmlstyle.cxx b/xmloff/source/style/xmlstyle.cxx index 4d3f2e21f816..5c4c12f667cf 100644 --- a/xmloff/source/style/xmlstyle.cxx +++ b/xmloff/source/style/xmlstyle.cxx @@ -140,6 +140,20 @@ SvXMLStyleContext::SvXMLStyleContext( { } +SvXMLStyleContext::SvXMLStyleContext( + SvXMLImport& rImp, + sal_Int32 /*nElement*/, + const css::uno::Reference< css::xml::sax::XFastAttributeList > &, + sal_uInt16 nFam, bool bDefault ) : + SvXMLImportContext( rImp ), + mbHidden( false ), + mnFamily( nFam ), + mbValid( true ), + mbNew( true ), + mbDefaultStyle( bDefault ) +{ +} + SvXMLStyleContext::~SvXMLStyleContext() { } |