diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-04 13:30:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-04 17:44:21 +0200 |
commit | 72a67f11586f953d74baaaab934570b63b326cde (patch) | |
tree | a9f2ed5916e930f95c57565d9a1477d6388b6542 /svx | |
parent | f9f88e2c4fbd33bbe60a8df34bfd1cffaf5ee6df (diff) |
loplugin:unusedmethods
Change-Id: I5fa2bbeff17a9933ff55afb0c3544d025d096a63
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100085
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/fmexch.cxx | 6 | ||||
-rw-r--r-- | svx/source/inc/fmexch.hxx | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/svx/source/form/fmexch.cxx b/svx/source/form/fmexch.cxx index 8d4ddc3647f8..39ef077b1ec1 100644 --- a/svx/source/form/fmexch.cxx +++ b/svx/source/form/fmexch.cxx @@ -327,12 +327,6 @@ namespace svxform implReset(); } - void OLocalExchangeHelper::startDrag(vcl::Window* pDragSource, sal_Int8 nDragSourceActions) - { - DBG_ASSERT(m_xTransferable.is(), "OLocalExchangeHelper::startDrag: not prepared!"); - m_xTransferable->startDrag( pDragSource, nDragSourceActions, OLocalExchange::GrantAccess() ); - } - void OLocalExchangeHelper::copyToClipboard( ) const { DBG_ASSERT( m_xTransferable.is(), "OLocalExchangeHelper::copyToClipboard: not prepared!" ); diff --git a/svx/source/inc/fmexch.hxx b/svx/source/inc/fmexch.hxx index 9916abc32efc..8eb65854e564 100644 --- a/svx/source/inc/fmexch.hxx +++ b/svx/source/inc/fmexch.hxx @@ -99,7 +99,6 @@ namespace svxform void prepareDrag( ); - void startDrag(vcl::Window* pDragSource, sal_Int8 nDragSourceActions); void copyToClipboard( ) const; bool isDragSource() const { return m_xTransferable.is() && m_xTransferable->isDragging(); } |