diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-07-06 08:59:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-07-06 12:59:26 +0200 |
commit | 58d155b8be249a2814fa48df802b42a85b810eca (patch) | |
tree | c478a14480023f69a3d5cb652f0faf1dba694d7f /include/xmloff | |
parent | a62af0444515ab28bc0ffdc8ff7f320ca962bbc0 (diff) |
loplugin:unusedfields all-can-be-private
these fields can be private
Change-Id: I74423a9ae2ef0263a28c8a716ab1c55861e453d9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154092
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/XMLCharContext.hxx | 1 | ||||
-rw-r--r-- | include/xmloff/XMLShapeStyleContext.hxx | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/xmloff/XMLCharContext.hxx b/include/xmloff/XMLCharContext.hxx index dd63a83fc149..348cd75f6ebb 100644 --- a/include/xmloff/XMLCharContext.hxx +++ b/include/xmloff/XMLCharContext.hxx @@ -29,7 +29,6 @@ class XMLOFF_DLLPUBLIC XMLCharContext : public SvXMLImportContext XMLCharContext(const XMLCharContext&) = delete; void operator =(const XMLCharContext&) = delete; sal_Int16 m_nControl; -protected: sal_uInt16 m_nCount; sal_Unicode m_c; public: diff --git a/include/xmloff/XMLShapeStyleContext.hxx b/include/xmloff/XMLShapeStyleContext.hxx index 59b7c91e6b5e..f58442ca22d0 100644 --- a/include/xmloff/XMLShapeStyleContext.hxx +++ b/include/xmloff/XMLShapeStyleContext.hxx @@ -33,10 +33,9 @@ class XMLOFF_DLLPUBLIC XMLShapeStyleContext: public XMLPropStyleContext { OUString m_sControlDataStyleName; bool m_bIsNumRuleAlreadyConverted; - -protected: OUString m_sListStyleName; +protected: virtual void SetAttribute( sal_Int32 nElement, const OUString& rValue ) override; public: |