diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-03-05 17:00:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-03-06 09:55:01 +0100 |
commit | f0cd0c7618f4463ad556ee0207ade62b6b2df962 (patch) | |
tree | 8834f7e03a6616078e11678e569f4369ef5a3a0f | |
parent | 5e76c9c02a9991a4a89f43975607f58b36b4d663 (diff) |
Related: tdf#131157 inherit ScDrawTransferObj from TransferDataContainer
Change-Id: I5119b959a6bff958582c404c03af59bd52c9497a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90051
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sc/source/ui/app/drwtrans.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/app/transobj.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/inc/drwtrans.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/transobj.hxx | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/app/drwtrans.cxx b/sc/source/ui/app/drwtrans.cxx index d159243adb1a..9b6529b18601 100644 --- a/sc/source/ui/app/drwtrans.cxx +++ b/sc/source/ui/app/drwtrans.cxx @@ -584,7 +584,7 @@ void ScDrawTransferObj::DragFinished( sal_Int8 nDropAction ) m_pDragSourceView.reset(); - TransferableHelper::DragFinished( nDropAction ); + TransferDataContainer::DragFinished( nDropAction ); } void ScDrawTransferObj::SetDrawPersist( const SfxObjectShellRef& rRef ) @@ -755,7 +755,7 @@ sal_Int64 SAL_CALL ScDrawTransferObj::getSomething( const css::uno::Sequence< sa nRet = reinterpret_cast< sal_Int64 >( this ); } else - nRet = TransferableHelper::getSomething(rId); + nRet = TransferDataContainer::getSomething(rId); return nRet; } diff --git a/sc/source/ui/app/transobj.cxx b/sc/source/ui/app/transobj.cxx index f94f66a1f53e..912f956f930f 100644 --- a/sc/source/ui/app/transobj.cxx +++ b/sc/source/ui/app/transobj.cxx @@ -573,7 +573,7 @@ void ScTransferObj::DragFinished( sal_Int8 nDropAction ) m_xDragSourceRanges = nullptr; // don't keep source after dropping - TransferableHelper::DragFinished( nDropAction ); + TransferDataContainer::DragFinished( nDropAction ); } void ScTransferObj::SetDragHandlePos( SCCOL nX, SCROW nY ) @@ -932,7 +932,7 @@ sal_Int64 SAL_CALL ScTransferObj::getSomething( const css::uno::Sequence< sal_In nRet = reinterpret_cast< sal_Int64 >( this ); } else - nRet = TransferableHelper::getSomething(rId); + nRet = TransferDataContainer::getSomething(rId); return nRet; } diff --git a/sc/source/ui/inc/drwtrans.hxx b/sc/source/ui/inc/drwtrans.hxx index 77bb377dd1bc..6fec11610e2c 100644 --- a/sc/source/ui/inc/drwtrans.hxx +++ b/sc/source/ui/inc/drwtrans.hxx @@ -35,7 +35,7 @@ class ScDrawView; class SdrOle2Obj; enum class ScDragSrc; -class ScDrawTransferObj : public TransferableHelper +class ScDrawTransferObj : public TransferDataContainer { private: std::unique_ptr<SdrModel> m_pModel; diff --git a/sc/source/ui/inc/transobj.hxx b/sc/source/ui/inc/transobj.hxx index 30828fc9a52f..c492a291b1dc 100644 --- a/sc/source/ui/inc/transobj.hxx +++ b/sc/source/ui/inc/transobj.hxx @@ -36,7 +36,7 @@ namespace com { namespace sun { namespace star { } }}} -class SAL_DLLPUBLIC_RTTI ScTransferObj : public TransferableHelper +class SAL_DLLPUBLIC_RTTI ScTransferObj : public TransferDataContainer { private: ScDocumentUniquePtr m_pDoc; |