summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-06-30 08:13:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-07-02 08:48:10 +0200
commitf54143088a867c59be144f1d4d7cd6d9fe1c18f5 (patch)
treee9bc8ff4e94f8fe95e62ed6f0ede84371f449f9d /sw
parent50c63e5c2f7962e8893e2d04b0e958209432f4c9 (diff)
loplugin:unusedmethods
Change-Id: I92665f577bfe39497905063da517a05b8008c3cc Reviewed-on: https://gerrit.libreoffice.org/56743 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/viscrs.hxx4
-rw-r--r--sw/source/uibase/inc/edtwin.hxx2
2 files changed, 0 insertions, 6 deletions
diff --git a/sw/inc/viscrs.hxx b/sw/inc/viscrs.hxx
index 258fc8d3f105..7521fee1370d 100644
--- a/sw/inc/viscrs.hxx
+++ b/sw/inc/viscrs.hxx
@@ -75,10 +75,6 @@ class SwSelPaintRects : public SwRects
#if HAVE_FEATURE_DESKTOP || defined(ANDROID)
std::unique_ptr<sdr::overlay::OverlayObject> m_pCursorOverlay;
-
- // access to m_pCursorOverlay for swapContent
- sdr::overlay::OverlayObject* getCursorOverlay() const { return m_pCursorOverlay.get(); }
- void setCursorOverlay(std::unique_ptr<sdr::overlay::OverlayObject> pNew) { m_pCursorOverlay = std::move(pNew); }
#endif
bool m_bShowTextInputFieldOverlay;
diff --git a/sw/source/uibase/inc/edtwin.hxx b/sw/source/uibase/inc/edtwin.hxx
index 091b787d3a3c..13dc3de08f56 100644
--- a/sw/source/uibase/inc/edtwin.hxx
+++ b/sw/source/uibase/inc/edtwin.hxx
@@ -229,10 +229,8 @@ public:
void StartExecuteDrag();
void DragFinished();
- const Color& GetWaterCanTextColor() { return m_aWaterCanTextColor; }
void SetWaterCanTextColor(const Color& rCol ) { m_aWaterCanTextColor = rCol; }
- const Color& GetWaterCanTextBackColor() { return m_aWaterCanTextBackColor; }
void SetWaterCanTextBackColor(const Color& rCol ) { m_aWaterCanTextBackColor = rCol; }
void LockKeyInput(bool bSet){m_bLockInput = bSet;}