include/xmloff/XMLFontStylesContext.hxx | 2 ++ include/xmloff/XMLTextTableContext.hxx | 4 ++++ include/xmloff/txtstyli.hxx | 2 ++ include/xmloff/xmlnumi.hxx | 2 ++ xmloff/source/style/XMLFontStylesContext.cxx | 2 ++ xmloff/source/style/xmlnumi.cxx | 2 ++ xmloff/source/text/XMLTextTableContext.cxx | 4 ++++ xmloff/source/text/txtstyli.cxx | 3 +++ 8 files changed, 21 insertions(+)
New commits: commit 936fd770facefa49019abcf30b241b694b3afac9 Author: Caolán McNamara <caol...@redhat.com> Date: Mon Jan 23 10:22:21 2017 +0000 just for non exported things Change-Id: I448d0009d7c8ffec64fdab76897e8684afe7fcd7 diff --git a/include/xmloff/XMLFontStylesContext.hxx b/include/xmloff/XMLFontStylesContext.hxx index d671e65..cc6a2a7 100644 --- a/include/xmloff/XMLFontStylesContext.hxx +++ b/include/xmloff/XMLFontStylesContext.hxx @@ -59,6 +59,8 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, rtl_TextEncoding eDfltEnc ); + ~XMLFontStylesContext() override; + const SvXMLTokenMap& GetFontStyleAttrTokenMap() const { return *pFontStyleAttrTokenMap; diff --git a/include/xmloff/XMLTextTableContext.hxx b/include/xmloff/XMLTextTableContext.hxx index 333716d..6077ccd 100644 --- a/include/xmloff/XMLTextTableContext.hxx +++ b/include/xmloff/XMLTextTableContext.hxx @@ -30,10 +30,14 @@ namespace com { namespace sun { namespace star { class XMLOFF_DLLPUBLIC XMLTextTableContext : public SvXMLImportContext { + public: + + XMLTextTableContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName ); + virtual ~XMLTextTableContext() override; }; #endif diff --git a/include/xmloff/txtstyli.hxx b/include/xmloff/txtstyli.hxx index 8eca3bd..a142e3d 100644 --- a/include/xmloff/txtstyli.hxx +++ b/include/xmloff/txtstyli.hxx @@ -63,11 +63,13 @@ protected: public: + XMLTextStyleContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName, const css::uno::Reference< css::xml::sax::XAttributeList > & xAttrList, SvXMLStylesContext& rStyles, sal_uInt16 nFamily, bool bDefaultStyle = false ); + ~XMLTextStyleContext() override; virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, diff --git a/include/xmloff/xmlnumi.hxx b/include/xmloff/xmlnumi.hxx index ee7913a..b1a0687 100644 --- a/include/xmloff/xmlnumi.hxx +++ b/include/xmloff/xmlnumi.hxx @@ -66,6 +66,8 @@ public: const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList, bool bOutl = false ); + ~SvxXMLListStyleContext() override; + virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/style/XMLFontStylesContext.cxx b/xmloff/source/style/XMLFontStylesContext.cxx index 76aebf9..8303ee9 100644 --- a/xmloff/source/style/XMLFontStylesContext.cxx +++ b/xmloff/source/style/XMLFontStylesContext.cxx @@ -377,6 +377,8 @@ XMLFontStylesContext::XMLFontStylesContext( SvXMLImport& rImport, { } +XMLFontStylesContext::~XMLFontStylesContext() {} + bool XMLFontStylesContext::FillProperties( const OUString& rName, ::std::vector< XMLPropertyState > &rProps, sal_Int32 nFamilyNameIdx, diff --git a/xmloff/source/style/xmlnumi.cxx b/xmloff/source/style/xmlnumi.cxx index b6c4eab..cb130d8 100644 --- a/xmloff/source/style/xmlnumi.cxx +++ b/xmloff/source/style/xmlnumi.cxx @@ -1018,6 +1018,8 @@ SvxXMLListStyleContext::SvxXMLListStyleContext( SvXMLImport& rImport, { } +SvxXMLListStyleContext::~SvxXMLListStyleContext() {} + SvXMLImportContext *SvxXMLListStyleContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, diff --git a/xmloff/source/text/XMLTextTableContext.cxx b/xmloff/source/text/XMLTextTableContext.cxx index 2a5f652..5fcfd88 100644 --- a/xmloff/source/text/XMLTextTableContext.cxx +++ b/xmloff/source/text/XMLTextTableContext.cxx @@ -31,4 +31,8 @@ XMLTextTableContext::XMLTextTableContext( { } +XMLTextTableContext::~XMLTextTableContext() +{ +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/xmloff/source/text/txtstyli.cxx b/xmloff/source/text/txtstyli.cxx index 6a78c2d..8df44e2 100644 --- a/xmloff/source/text/txtstyli.cxx +++ b/xmloff/source/text/txtstyli.cxx @@ -149,6 +149,9 @@ XMLTextStyleContext::XMLTextStyleContext( SvXMLImport& rImport, { } +XMLTextStyleContext::~XMLTextStyleContext() +{} + SvXMLImportContext *XMLTextStyleContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName,
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits