summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-08-08 10:39:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-08-08 18:57:02 +0200
commitc8b7a833c8f195facf225d062adc762a07ea55b9 (patch)
tree251b11197a25ca5beebbed2338ba34de2133773a /svx
parenta5ada62f564b90cf211929baf7694f477a53a445 (diff)
loplugin:unusedmethods
Change-Id: I58819edd0965ff52c3fc6c20d84bc5951a79bbe2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100381 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/form/fmexch.cxx6
-rw-r--r--svx/source/inc/fmexch.hxx1
2 files changed, 0 insertions, 7 deletions
diff --git a/svx/source/form/fmexch.cxx b/svx/source/form/fmexch.cxx
index 34187a6ea2e5..c512c445d950 100644
--- a/svx/source/form/fmexch.cxx
+++ b/svx/source/form/fmexch.cxx
@@ -71,12 +71,6 @@ namespace svxform
m_aClipboardListener.Call( *this );
}
- void OLocalExchange::startDrag( vcl::Window* _pWindow, sal_Int8 _nDragSourceActions, const GrantAccess& )
- {
- setDragging(true);
- StartDrag( _pWindow, _nDragSourceActions );
- }
-
void OLocalExchange::setDragging(bool bDragging)
{
m_bDragging = bDragging;
diff --git a/svx/source/inc/fmexch.hxx b/svx/source/inc/fmexch.hxx
index 22066c5c887b..deed78fc5d6c 100644
--- a/svx/source/inc/fmexch.hxx
+++ b/svx/source/inc/fmexch.hxx
@@ -59,7 +59,6 @@ namespace svxform
bool isClipboardOwner() const { return m_bClipboardOwner; }
void setDragging(bool bDragging);
- void startDrag( vcl::Window* pWindow, sal_Int8 nDragSourceActions, const GrantAccess& );
void copyToClipboard(const GrantAccess&);
void setClipboardListener( const Link<OLocalExchange&,void>& _rListener ) { m_aClipboardListener = _rListener; }