diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-31 14:39:47 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-01 07:15:27 +0100 |
commit | 7d8d7ebbc69015166f4dea22748e6c8586d51013 (patch) | |
tree | d3186b4d049bc6c5c32a2df05aaf6a2c4cdca94c /oox | |
parent | ee1d6af9b73256e13975ec4e95aff6d69a00fed9 (diff) |
loplugin:finalclasses in oox
Change-Id: I12c274877a0975971863456e9abdcb811ee2bd80
Reviewed-on: https://gerrit.libreoffice.org/44133
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox')
19 files changed, 54 insertions, 57 deletions
diff --git a/oox/inc/drawingml/linepropertiescontext.hxx b/oox/inc/drawingml/linepropertiescontext.hxx index 5b33cdc28259..5f11d50c634b 100644 --- a/oox/inc/drawingml/linepropertiescontext.hxx +++ b/oox/inc/drawingml/linepropertiescontext.hxx @@ -27,7 +27,7 @@ namespace oox { namespace drawingml { struct LineProperties; -class LinePropertiesContext : public ::oox::core::ContextHandler2 +class LinePropertiesContext final : public ::oox::core::ContextHandler2 { public: LinePropertiesContext( ::oox::core::ContextHandler2Helper const & rParent, @@ -38,7 +38,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: LineProperties& mrLineProperties; }; diff --git a/oox/inc/drawingml/misccontexts.hxx b/oox/inc/drawingml/misccontexts.hxx index d1d050223111..1646cc6072bd 100644 --- a/oox/inc/drawingml/misccontexts.hxx +++ b/oox/inc/drawingml/misccontexts.hxx @@ -226,7 +226,7 @@ protected: struct. The imported fill properties are converted automatically to the best fitting solid color. */ -class SimpleFillPropertiesContext : private FillProperties, public FillPropertiesContext +class SimpleFillPropertiesContext final : private FillProperties, public FillPropertiesContext { public: explicit SimpleFillPropertiesContext( @@ -234,7 +234,7 @@ public: Color& rColor ); virtual ~SimpleFillPropertiesContext() override; -protected: +private: Color& mrColor; }; diff --git a/oox/inc/drawingml/objectdefaultcontext.hxx b/oox/inc/drawingml/objectdefaultcontext.hxx index bfc55842a053..ea5474b02f09 100644 --- a/oox/inc/drawingml/objectdefaultcontext.hxx +++ b/oox/inc/drawingml/objectdefaultcontext.hxx @@ -26,13 +26,13 @@ namespace oox { namespace drawingml { class Theme; -class objectDefaultContext : public oox::core::ContextHandler2 +class objectDefaultContext final : public oox::core::ContextHandler2 { public: objectDefaultContext( ::oox::core::ContextHandler2Helper const & rParent, Theme& rTheme ); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: Theme& mrTheme; }; diff --git a/oox/inc/drawingml/shapestylecontext.hxx b/oox/inc/drawingml/shapestylecontext.hxx index fe4851a38392..96926ad6d678 100644 --- a/oox/inc/drawingml/shapestylecontext.hxx +++ b/oox/inc/drawingml/shapestylecontext.hxx @@ -25,7 +25,7 @@ namespace oox { namespace drawingml { -class ShapeStyleContext : public ::oox::core::ContextHandler2 +class ShapeStyleContext final : public ::oox::core::ContextHandler2 { public: ShapeStyleContext( ::oox::core::ContextHandler2Helper const & rParent, Shape& rShape ); @@ -33,7 +33,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: Shape& mrShape; }; diff --git a/oox/inc/drawingml/spdefcontext.hxx b/oox/inc/drawingml/spdefcontext.hxx index 9d7e45839fec..acdc2537c57a 100644 --- a/oox/inc/drawingml/spdefcontext.hxx +++ b/oox/inc/drawingml/spdefcontext.hxx @@ -25,13 +25,13 @@ namespace oox { namespace drawingml { -class spDefContext : public oox::core::ContextHandler2 +class spDefContext final : public oox::core::ContextHandler2 { public: spDefContext( ::oox::core::ContextHandler2Helper const & rParent, Shape& rDefaultObject ); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: Shape& mrDefaultObject; }; diff --git a/oox/inc/drawingml/textbodycontext.hxx b/oox/inc/drawingml/textbodycontext.hxx index ad1bac8c47a0..a3439105493a 100644 --- a/oox/inc/drawingml/textbodycontext.hxx +++ b/oox/inc/drawingml/textbodycontext.hxx @@ -28,19 +28,19 @@ namespace oox { namespace drawingml { -class TextBodyContext : public ::oox::core::ContextHandler2 +class TextBodyContext final : public ::oox::core::ContextHandler2 { public: TextBodyContext( ::oox::core::ContextHandler2Helper const & rParent, TextBody& rTextBody ); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: TextBody& mrTextBody; }; // CT_RegularTextRun -class RegularTextRunContext : public ::oox::core::ContextHandler2 +class RegularTextRunContext final : public ::oox::core::ContextHandler2 { public: RegularTextRunContext( ::oox::core::ContextHandler2Helper const & rParent, TextRunPtr const & pRunPtr ); @@ -49,7 +49,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; virtual void onCharacters( const OUString& aChars ) override; -protected: +private: TextRunPtr mpRunPtr; bool mbIsInText; }; diff --git a/oox/inc/drawingml/textbodypropertiescontext.hxx b/oox/inc/drawingml/textbodypropertiescontext.hxx index 7ca81ac45cb4..0ec5fe455185 100644 --- a/oox/inc/drawingml/textbodypropertiescontext.hxx +++ b/oox/inc/drawingml/textbodypropertiescontext.hxx @@ -26,7 +26,7 @@ namespace oox { namespace drawingml { struct TextBodyProperties; -class TextBodyPropertiesContext : public ::oox::core::ContextHandler2 +class TextBodyPropertiesContext final : public ::oox::core::ContextHandler2 { public: TextBodyPropertiesContext( ::oox::core::ContextHandler2Helper const & rParent, @@ -35,7 +35,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: TextBodyProperties& mrTextBodyProp; }; diff --git a/oox/inc/drawingml/textcharacterpropertiescontext.hxx b/oox/inc/drawingml/textcharacterpropertiescontext.hxx index c07c1fee24c6..fb492a168c68 100644 --- a/oox/inc/drawingml/textcharacterpropertiescontext.hxx +++ b/oox/inc/drawingml/textcharacterpropertiescontext.hxx @@ -26,7 +26,7 @@ namespace oox { namespace drawingml { struct TextCharacterProperties; -class TextCharacterPropertiesContext : public ::oox::core::ContextHandler2 +class TextCharacterPropertiesContext final : public ::oox::core::ContextHandler2 { public: TextCharacterPropertiesContext( ::oox::core::ContextHandler2Helper const & rParent, @@ -36,7 +36,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: TextCharacterProperties& mrTextCharacterProperties; }; diff --git a/oox/inc/drawingml/texteffectscontext.hxx b/oox/inc/drawingml/texteffectscontext.hxx index 853d9dff57ef..2676121a3c82 100644 --- a/oox/inc/drawingml/texteffectscontext.hxx +++ b/oox/inc/drawingml/texteffectscontext.hxx @@ -20,7 +20,7 @@ namespace oox { namespace drawingml { -class TextEffectsContext : public oox::core::ContextHandler2 +class TextEffectsContext final : public oox::core::ContextHandler2 { public: TextEffectsContext(oox::core::ContextHandler2Helper const & rParent, @@ -33,14 +33,13 @@ public: virtual oox::core::ContextHandlerRef onCreateContext(sal_Int32 Element, const oox::AttributeList& rAttribs) override; -protected: - std::vector<css::beans::PropertyValue>& mrTextEffectsProperties; - std::unique_ptr<oox::GrabBagStack> mpGrabBagStack; - sal_Int32 mnCurrentElement; - private: void processAttributes(const AttributeList& rAttribs); void pushAttributeToGrabBag (sal_Int32 aAttributeId, const OUString& rElementName, const AttributeList& rAttribs); + + std::vector<css::beans::PropertyValue>& mrTextEffectsProperties; + std::unique_ptr<oox::GrabBagStack> mpGrabBagStack; + sal_Int32 mnCurrentElement; }; } } diff --git a/oox/inc/drawingml/textliststylecontext.hxx b/oox/inc/drawingml/textliststylecontext.hxx index 736157030af8..6f7d1a0d1b77 100644 --- a/oox/inc/drawingml/textliststylecontext.hxx +++ b/oox/inc/drawingml/textliststylecontext.hxx @@ -25,7 +25,7 @@ namespace oox { namespace drawingml { -class TextListStyleContext : public ::oox::core::ContextHandler2 +class TextListStyleContext final : public ::oox::core::ContextHandler2 { public: TextListStyleContext( ::oox::core::ContextHandler2Helper const & rParent, TextListStyle& rTextListStyle ); @@ -33,7 +33,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: TextListStyle& mrTextListStyle; }; diff --git a/oox/inc/drawingml/textparagraphpropertiescontext.hxx b/oox/inc/drawingml/textparagraphpropertiescontext.hxx index 24a40c136ba0..2de92b5b05ab 100644 --- a/oox/inc/drawingml/textparagraphpropertiescontext.hxx +++ b/oox/inc/drawingml/textparagraphpropertiescontext.hxx @@ -30,7 +30,7 @@ namespace oox { namespace drawingml { -class TextParagraphPropertiesContext : public ::oox::core::ContextHandler2 +class TextParagraphPropertiesContext final : public ::oox::core::ContextHandler2 { public: TextParagraphPropertiesContext( ::oox::core::ContextHandler2Helper const & rParent, @@ -40,7 +40,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: TextParagraphProperties& mrTextParagraphProperties; TextSpacing maLineSpacing; BulletList& mrBulletList; diff --git a/oox/inc/drawingml/transform2dcontext.hxx b/oox/inc/drawingml/transform2dcontext.hxx index df502d341484..eb772ee7419e 100644 --- a/oox/inc/drawingml/transform2dcontext.hxx +++ b/oox/inc/drawingml/transform2dcontext.hxx @@ -28,14 +28,14 @@ namespace drawingml { class Shape; /** context to import a CT_Transform2D */ -class Transform2DContext : public ::oox::core::ContextHandler2 +class Transform2DContext final : public ::oox::core::ContextHandler2 { public: Transform2DContext( ::oox::core::ContextHandler2Helper const & rParent, const ::oox::AttributeList& rAttributes, Shape& rShape, bool btxXfrm = false ) throw(); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: Shape& mrShape; bool mbtxXfrm; }; diff --git a/oox/source/drawingml/diagram/datamodelcontext.hxx b/oox/source/drawingml/diagram/datamodelcontext.hxx index 36298d047689..b41fe6c2dfd3 100644 --- a/oox/source/drawingml/diagram/datamodelcontext.hxx +++ b/oox/source/drawingml/diagram/datamodelcontext.hxx @@ -28,7 +28,7 @@ namespace oox { namespace drawingml { // CT_DataModel -class DataModelContext : public ::oox::core::ContextHandler2 +class DataModelContext final : public ::oox::core::ContextHandler2 { public: DataModelContext( ::oox::core::ContextHandler2Helper const & rParent, const DiagramDataPtr & pDataModelPtr ); @@ -36,7 +36,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: DiagramDataPtr mpDataModel; }; diff --git a/oox/source/drawingml/effectpropertiescontext.hxx b/oox/source/drawingml/effectpropertiescontext.hxx index b0688c2838aa..540dd0187639 100644 --- a/oox/source/drawingml/effectpropertiescontext.hxx +++ b/oox/source/drawingml/effectpropertiescontext.hxx @@ -17,7 +17,7 @@ namespace oox { namespace drawingml { struct EffectProperties; struct Effect; -class EffectPropertiesContext : public ::oox::core::ContextHandler2 +class EffectPropertiesContext final : public ::oox::core::ContextHandler2 { public: EffectPropertiesContext( ::oox::core::ContextHandler2Helper const & rParent, @@ -27,11 +27,10 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: - EffectProperties& mrEffectProperties; - private: static void saveUnsupportedAttribs( Effect& rEffect, const AttributeList& rAttribs ); + + EffectProperties& mrEffectProperties; }; } } diff --git a/oox/source/drawingml/hyperlinkcontext.hxx b/oox/source/drawingml/hyperlinkcontext.hxx index 49e9ade5273c..027147b9a923 100644 --- a/oox/source/drawingml/hyperlinkcontext.hxx +++ b/oox/source/drawingml/hyperlinkcontext.hxx @@ -28,7 +28,7 @@ namespace oox { class PropertyMap; } namespace oox { namespace drawingml { -class HyperLinkContext : public ::oox::core::ContextHandler2 +class HyperLinkContext final : public ::oox::core::ContextHandler2 { public: HyperLinkContext( @@ -39,7 +39,7 @@ public: virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; -protected: +private: PropertyMap& maProperties; }; diff --git a/oox/source/drawingml/texttabstoplistcontext.hxx b/oox/source/drawingml/texttabstoplistcontext.hxx index 5f7716cd93e9..2b4537d6e4a8 100644 --- a/oox/source/drawingml/texttabstoplistcontext.hxx +++ b/oox/source/drawingml/texttabstoplistcontext.hxx @@ -28,18 +28,18 @@ namespace oox { namespace drawingml { - class TextTabStopListContext : public ::oox::core::ContextHandler2 - { - public: - TextTabStopListContext( ::oox::core::ContextHandler2Helper const & rParent, - ::std::vector< css::style::TabStop > & aTabList ); - virtual ~TextTabStopListContext() override; - - virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; - -protected: - ::std::vector< css::style::TabStop > & maTabList; - }; +class TextTabStopListContext final : public ::oox::core::ContextHandler2 +{ +public: + TextTabStopListContext( ::oox::core::ContextHandler2Helper const & rParent, + ::std::vector< css::style::TabStop > & aTabList ); + virtual ~TextTabStopListContext() override; + + virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; + +private: + ::std::vector< css::style::TabStop > & maTabList; +}; } } diff --git a/oox/source/shape/LockedCanvasContext.hxx b/oox/source/shape/LockedCanvasContext.hxx index 1952a5024ea2..3a6d3ca6a303 100644 --- a/oox/source/shape/LockedCanvasContext.hxx +++ b/oox/source/shape/LockedCanvasContext.hxx @@ -19,7 +19,7 @@ namespace shape { /// Locked canvas is kind of a container for drawingml shapes: it can even contain group shapes. -class LockedCanvasContext : public oox::core::ContextHandler2 +class LockedCanvasContext final : public oox::core::ContextHandler2 { public: explicit LockedCanvasContext(oox::core::ContextHandler2Helper const& rParent); @@ -32,8 +32,7 @@ public: return mpShape; } -protected: - +private: oox::drawingml::ShapePtr mpShape; }; diff --git a/oox/source/shape/WpgContext.hxx b/oox/source/shape/WpgContext.hxx index c22d6e7a7f05..2fa6ca02ba9f 100644 --- a/oox/source/shape/WpgContext.hxx +++ b/oox/source/shape/WpgContext.hxx @@ -19,7 +19,7 @@ namespace shape { /// Wpg is the drawingML equivalent of v:group. -class WpgContext : public oox::core::ContextHandler2 +class WpgContext final : public oox::core::ContextHandler2 { public: explicit WpgContext(oox::core::ContextHandler2Helper const& rParent); @@ -32,7 +32,7 @@ public: return mpShape; } -protected: +private: oox::drawingml::ShapePtr mpShape; }; diff --git a/oox/source/shape/WpsContext.hxx b/oox/source/shape/WpsContext.hxx index e40c8166d1f5..73589aaed487 100644 --- a/oox/source/shape/WpsContext.hxx +++ b/oox/source/shape/WpsContext.hxx @@ -19,7 +19,7 @@ namespace shape { /// Wps is the drawingML equivalent of v:shape. -class WpsContext : public oox::core::ContextHandler2 +class WpsContext final : public oox::core::ContextHandler2 { public: WpsContext(oox::core::ContextHandler2Helper const& rParent, css::uno::Reference<css::drawing::XShape> xShape); @@ -32,7 +32,7 @@ public: return mpShape; } -protected: +private: oox::drawingml::ShapePtr mpShape; css::uno::Reference<css::drawing::XShape> mxShape; }; |