summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-04-12 16:59:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-04-14 20:52:54 +0200
commita41aef4c1648519b934f0aed06d1c75f75fd852a (patch)
tree8c9065fd169408af192c408b8ec426695b1cbc5a /sw/source
parent80e081051da2c92c36c9b5aa280a944661bd3ddf (diff)
loplugin:unusedmethods
Change-Id: I9c1c6f27e35a66d8e3623c3ebb1618dceda60e24 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113988 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/core/frmedt/feflyole.cxx5
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx8
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.hxx1
-rw-r--r--sw/source/uibase/inc/edtwin.hxx1
4 files changed, 0 insertions, 15 deletions
diff --git a/sw/source/core/frmedt/feflyole.cxx b/sw/source/core/frmedt/feflyole.cxx
index b780817d8e89..d13f74a92e60 100644
--- a/sw/source/core/frmedt/feflyole.cxx
+++ b/sw/source/core/frmedt/feflyole.cxx
@@ -85,11 +85,6 @@ OUString SwFEShell::GetUniqueFrameName() const
return GetDoc()->GetUniqueFrameName();
}
-OUString SwFEShell::GetUniqueShapeName() const
-{
- return GetDoc()->GetUniqueShapeName();
-}
-
bool SwFEShell::FinishOLEObj() // Server is terminated
{
SfxInPlaceClient* pIPClient = GetSfxViewShell()->GetIPClient();
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 37e5049cbbe1..7573ede5f0ff 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4876,14 +4876,6 @@ void DocxAttributeOutput::WriteSrcRect(
XML_b, OString::number(bottom) );
}
-void DocxAttributeOutput::PopRelIdCache()
-{
- if (!m_aRelIdCache.empty())
- m_aRelIdCache.pop();
- if (!m_aSdrRelIdCache.empty())
- m_aSdrRelIdCache.pop();
-}
-
void DocxAttributeOutput::PushRelIdCache()
{
m_aRelIdCache.emplace();
diff --git a/sw/source/filter/ww8/docxattributeoutput.hxx b/sw/source/filter/ww8/docxattributeoutput.hxx
index 62ace93d55f0..977c57f0d9f8 100644
--- a/sw/source/filter/ww8/docxattributeoutput.hxx
+++ b/sw/source/filter/ww8/docxattributeoutput.hxx
@@ -363,7 +363,6 @@ public:
void WriteFinalBookmarks_Impl( std::vector< OUString >& rStarts, std::vector< OUString >& rEnds );
void WriteAnnotationMarks_Impl( std::vector< OUString >& rStarts, std::vector< OUString >& rEnds );
void PushRelIdCache();
- void PopRelIdCache();
/// End possibly opened paragraph sdt block.
void EndParaSdtBlock();
diff --git a/sw/source/uibase/inc/edtwin.hxx b/sw/source/uibase/inc/edtwin.hxx
index cb736bdf562f..1cf352437d83 100644
--- a/sw/source/uibase/inc/edtwin.hxx
+++ b/sw/source/uibase/inc/edtwin.hxx
@@ -292,7 +292,6 @@ public:
void SetGraphicTwipPosition(bool bStart, const Point& rPosition);
const SwFrame* GetSavedOutlineFrame() const { return m_pSavedOutlineFrame; }
- void SetSavedOutlineFrame(SwFrame* pFrame) { m_pSavedOutlineFrame = pFrame; }
virtual FactoryFunction GetUITestFactory() const override;
};