diff options
Diffstat (limited to 'svx/source/table/tableundo.cxx')
-rw-r--r-- | svx/source/table/tableundo.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/tableundo.cxx b/svx/source/table/tableundo.cxx index c7f53e7c0306..663c56a42c9c 100644 --- a/svx/source/table/tableundo.cxx +++ b/svx/source/table/tableundo.cxx @@ -103,7 +103,7 @@ bool CellUndo::Merge( SfxUndoAction *pNextAction ) void CellUndo::setDataToCell( const Data& rData ) { if( rData.mpProperties ) - mxCell->mpProperties.reset(Cell::CloneProperties( rData.mpProperties, *mxObjRef.get(), *mxCell.get() )); + mxCell->mpProperties.reset(Cell::CloneProperties( rData.mpProperties, *mxObjRef.get(), *mxCell )); else mxCell->mpProperties.reset(); @@ -133,7 +133,7 @@ void CellUndo::getDataFromCell( Data& rData ) if( mxObjRef.is() && mxCell.is() ) { if( mxCell->mpProperties ) - rData.mpProperties = mxCell->CloneProperties( *mxObjRef.get(), *mxCell.get()); + rData.mpProperties = mxCell->CloneProperties( *mxObjRef.get(), *mxCell); if( mxCell->GetOutlinerParaObject() ) rData.mpOutlinerParaObject = new OutlinerParaObject(*mxCell->GetOutlinerParaObject()); |