diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-27 15:02:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-27 20:35:25 +0100 |
commit | b6546c0cbd00357f6c815e8349a12b872700c3f8 (patch) | |
tree | 0db34c2942afda07e12e5fa55000f64e1cb42dca /include | |
parent | 5f58ffce789c15e3849bceb9fe4844d838e9c40e (diff) |
inherit ScLinkTransferObj from TransferDataContainer
Change-Id: I04d8a673e92e847e1485f85d951172bf71a8877b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89647
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/transfer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/transfer.hxx b/include/vcl/transfer.hxx index 2a72fd6fab23..234871576031 100644 --- a/include/vcl/transfer.hxx +++ b/include/vcl/transfer.hxx @@ -490,7 +490,6 @@ class VCL_DLLPUBLIC TransferDataContainer : public TransferableHelper virtual void AddSupportedFormats() override; virtual bool GetData( const css::datatransfer::DataFlavor& rFlavor, const OUString& rDestDoc ) override; - virtual void DragFinished( sal_Int8 nDropAction ) override; public: @@ -509,6 +508,7 @@ public: using TransferableHelper::StartDrag; void StartDrag( vcl::Window* pWindow, sal_Int8 nDragSourceActions, const Link<sal_Int8,void>& rCallbck ); + virtual void DragFinished( sal_Int8 nDropAction ) override; }; css::uno::Reference<css::datatransfer::clipboard::XClipboard> VCL_DLLPUBLIC GetSystemClipboard(); |