summaryrefslogtreecommitdiffstats
path: root/chart2/source/controller/main/UndoActions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/controller/main/UndoActions.cxx')
-rw-r--r--chart2/source/controller/main/UndoActions.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/controller/main/UndoActions.cxx b/chart2/source/controller/main/UndoActions.cxx
index 812e059e7980..301bef28279c 100644
--- a/chart2/source/controller/main/UndoActions.cxx
+++ b/chart2/source/controller/main/UndoActions.cxx
@@ -65,7 +65,7 @@ OUString SAL_CALL UndoElement::getTitle()
void UndoElement::impl_toggleModelState()
{
// get a snapshot of the current state of our model
- std::shared_ptr< ChartModelClone > pNewClone( new ChartModelClone( m_xDocumentModel, m_pModelClone->getFacet() ) );
+ auto pNewClone = std::make_shared<ChartModelClone>( m_xDocumentModel, m_pModelClone->getFacet() );
// apply the previous snapshot to our model
m_pModelClone->applyToModel( m_xDocumentModel );
// remember the new snapshot, for the next toggle