summaryrefslogtreecommitdiffstats
path: root/forms
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-05-18 15:35:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-05-18 18:20:34 +0200
commit81def52473d8de50f7b0570c9867573256b8afa7 (patch)
tree965ba42076d57d711e240ea1c1bac6409a0da93e /forms
parentloplugin:unnecessaryvirtual (diff)
downloadcore-81def52473d8de50f7b0570c9867573256b8afa7.tar.gz
core-81def52473d8de50f7b0570c9867573256b8afa7.zip
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')
-rw-r--r--forms/source/richtext/richtextengine.cxx1
-rw-r--r--forms/source/richtext/richtextengine.hxx3
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
*/