summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-08-16 11:38:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-08-16 15:26:12 +0200
commit89ca0ed3bc773b2fa65c74a4d3cfbdd3515bc641 (patch)
tree77355c99c9f69a17bd09ce23f4ec15db836fc201 /dbaccess
parentdcadca1bd54b3450a2c408d4629b53ca8b19efc3 (diff)
loplugin:singlevalfields
Change-Id: Ia5d4de61ecf77477e86032b86d67d6ffd011913e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100819 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/inc/JoinExchange.hxx2
-rw-r--r--dbaccess/source/ui/querydesign/JoinExchange.cxx8
2 files changed, 0 insertions, 10 deletions
diff --git a/dbaccess/source/ui/inc/JoinExchange.hxx b/dbaccess/source/ui/inc/JoinExchange.hxx
index 253ee0ccbdaa..b4ec44886b1d 100644
--- a/dbaccess/source/ui/inc/JoinExchange.hxx
+++ b/dbaccess/source/ui/inc/JoinExchange.hxx
@@ -35,7 +35,6 @@ namespace dbaui
bool m_bFirstEntry;
OJoinExchangeData m_jxdSourceDescription;
- IDragTransferableListener* m_pDragListener;
virtual ~OJoinExchObj() override;
@@ -58,7 +57,6 @@ namespace dbaui
private:
virtual void AddSupportedFormats() override;
virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) override;
- virtual void DragFinished( sal_Int8 nDropAction ) override;
};
}
#endif
diff --git a/dbaccess/source/ui/querydesign/JoinExchange.cxx b/dbaccess/source/ui/querydesign/JoinExchange.cxx
index 1f1b235c4a3b..65e883d8d901 100644
--- a/dbaccess/source/ui/querydesign/JoinExchange.cxx
+++ b/dbaccess/source/ui/querydesign/JoinExchange.cxx
@@ -36,7 +36,6 @@ namespace dbaui
OJoinExchObj::OJoinExchObj()
: m_bFirstEntry(false)
- , m_pDragListener(nullptr)
{
}
@@ -44,13 +43,6 @@ namespace dbaui
{
}
- void OJoinExchObj::DragFinished( sal_Int8 /*nDropAction*/ )
- {
- if (m_pDragListener)
- m_pDragListener->dragFinished();
- m_pDragListener = nullptr;
- }
-
bool OJoinExchObj::isFormatAvailable( const DataFlavorExVector& _rFormats ,SotClipboardFormatId _nSlotID)
{
for (auto const& format : _rFormats)