summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-06-29 16:34:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-06-30 15:14:14 +0200
commitc33e81615c85eb9acd5956973e3bbc27ea068b41 (patch)
treed4061b481a75eab3d9d7140765adf16ebf79e201 /editeng
parent105f057f5b994b7d79a55ca719240839c2d45b54 (diff)
loplugin:unusedmethods
Change-Id: I8d3402a69237b665462e04440ad73fe29e2133db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153807 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/editeng.cxx6
-rw-r--r--editeng/source/editeng/impedit.hxx1
2 files changed, 0 insertions, 7 deletions
diff --git a/editeng/source/editeng/editeng.cxx b/editeng/source/editeng/editeng.cxx
index c766328fd667..19ed11229645 100644
--- a/editeng/source/editeng/editeng.cxx
+++ b/editeng/source/editeng/editeng.cxx
@@ -1665,12 +1665,6 @@ void EditEngine::SetModifyHdl( const Link<LinkParamNone*,void>& rLink )
pImpEditEngine->SetModifyHdl( rLink );
}
-Link<LinkParamNone*,void> const & EditEngine::GetModifyHdl() const
-{
- return pImpEditEngine->GetModifyHdl();
-}
-
-
void EditEngine::ClearModifyFlag()
{
pImpEditEngine->SetModifyFlag( false );
diff --git a/editeng/source/editeng/impedit.hxx b/editeng/source/editeng/impedit.hxx
index 1a8f7fdc48f4..b59d934beadf 100644
--- a/editeng/source/editeng/impedit.hxx
+++ b/editeng/source/editeng/impedit.hxx
@@ -978,7 +978,6 @@ public:
bool IsModified() const { return aEditDoc.IsModified(); }
void SetModifyFlag( bool b ) { aEditDoc.SetModified( b ); }
void SetModifyHdl( const Link<LinkParamNone*,void>& rLink ) { aModifyHdl = rLink; }
- const Link<LinkParamNone*,void>& GetModifyHdl() const { return aModifyHdl; }
bool IsInSelectionMode() const { return bInSelection; }