summaryrefslogtreecommitdiff
path: root/sw/source/uibase/dochdl/swdtflvr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/dochdl/swdtflvr.cxx')
-rw-r--r--sw/source/uibase/dochdl/swdtflvr.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sw/source/uibase/dochdl/swdtflvr.cxx b/sw/source/uibase/dochdl/swdtflvr.cxx
index 28ae025eeb47..4787dc9a7a4d 100644
--- a/sw/source/uibase/dochdl/swdtflvr.cxx
+++ b/sw/source/uibase/dochdl/swdtflvr.cxx
@@ -3569,12 +3569,11 @@ void SwTransferable::CreateSelection( SwWrtShell& rSh,
const SwFrameShell * _pCreatorView )
{
SwModule *pMod = SW_MOD();
- SwTransferable* pNew = new SwTransferable( rSh );
+ rtl::Reference<SwTransferable> pNew = new SwTransferable( rSh );
pNew->m_pCreatorView = _pCreatorView;
- uno::Reference< XTransferable > xRef( pNew );
- pMod->m_pXSelection = pNew;
+ pMod->m_pXSelection = pNew.get();
pNew->CopyToSelection( rSh.GetWin() );
}