diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-18 15:35:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-18 18:20:34 +0200 |
commit | 81def52473d8de50f7b0570c9867573256b8afa7 (patch) | |
tree | 965ba42076d57d711e240ea1c1bac6409a0da93e /forms/source | |
parent | b7c44d7a34027210c06c9936f273fb1a3523a81a (diff) |
loplugin:unusedmethods
Change-Id: I8191f4a9eb25b12242354813303fb7d30489d2c4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115752
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/richtext/richtextengine.cxx | 1 | ||||
-rw-r--r-- | forms/source/richtext/richtextengine.hxx | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/forms/source/richtext/richtextengine.cxx b/forms/source/richtext/richtextengine.cxx index e6fd4848aa4f..14f50a6fca4d 100644 --- a/forms/source/richtext/richtextengine.cxx +++ b/forms/source/richtext/richtextengine.cxx @@ -95,7 +95,6 @@ namespace frm RichTextEngine::RichTextEngine( SfxItemPool* _pPool ) :EditEngine( _pPool ) - ,m_pEnginePool( _pPool ) { } diff --git a/forms/source/richtext/richtextengine.hxx b/forms/source/richtext/richtextengine.hxx index b0eccbe80ef5..c9413e6bd029 100644 --- a/forms/source/richtext/richtextengine.hxx +++ b/forms/source/richtext/richtextengine.hxx @@ -41,7 +41,6 @@ namespace frm class RichTextEngine final : public EditEngine { private: - SfxItemPool* m_pEnginePool; ::std::vector< IEngineStatusListener* > m_aStatusListeners; public: @@ -54,8 +53,6 @@ namespace frm void registerEngineStatusListener( IEngineStatusListener* _pListener ); void revokeEngineStatusListener( IEngineStatusListener const * _pListener ); - SfxItemPool* getPool() { return m_pEnginePool; } - private: /** constructs a new RichTextEngine. The instances takes the ownership of the given SfxItemPool */ |