diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-27 15:58:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-28 10:13:06 +0200 |
commit | 6100ef45d8c90f141d68011bba9d9745dd319174 (patch) | |
tree | fcb3d07106f936dca2670572920294e050938c50 /sc/source/ui/unoobj | |
parent | b7239a1271d5af51163b4fcd93608b72db2616a4 (diff) |
return ScMemChart by std::unique_ptr
Change-Id: I5a5b54872ce6ae351c6550a1ec0b2f7c52c35e13
Reviewed-on: https://gerrit.libreoffice.org/59683
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/unoobj')
-rw-r--r-- | sc/source/ui/unoobj/cellsuno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index e957cb22faef..4d31248c34e9 100644 --- a/sc/source/ui/unoobj/cellsuno.cxx +++ b/sc/source/ui/unoobj/cellsuno.cxx @@ -2995,7 +2995,7 @@ void SAL_CALL ScCellRangesBase::incrementIndent() // XChartData -ScMemChart* ScCellRangesBase::CreateMemChart_Impl() const +std::unique_ptr<ScMemChart> ScCellRangesBase::CreateMemChart_Impl() const { if ( pDocShell && !aRanges.empty() ) { |