summaryrefslogtreecommitdiff
path: root/sc/source/ui/app
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/app')
-rw-r--r--sc/source/ui/app/drwtrans.cxx4
-rw-r--r--sc/source/ui/app/transobj.cxx4
2 files changed, 4 insertions, 4 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;
}