diff options
Diffstat (limited to 'sc/source/ui/app/transobj.cxx')
-rw-r--r-- | sc/source/ui/app/transobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |