diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-11 16:33:36 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-12 08:56:26 +0200 |
commit | aa5da4850b0024e521aaf9d3324c2e755c5f65d4 (patch) | |
tree | f335510bae2c35512e5ce7e5b67e847a182e3ad1 /sc/inc/global.hxx | |
parent | db1c992f08668558777f157ee566f0e4772abdd4 (diff) |
use unique_ptr for ScFunctionMgr
Change-Id: Ida42bf61e7fe4e2775e7a95c4eca7d03947bf3a4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100535
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 6d13efab4523..adf294cdeaba 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -515,7 +515,7 @@ class ScGlobal static std::unique_ptr<SvxBrushItem> xEmbeddedBrushItem; static ScFunctionList* pStarCalcFunctionList; - static ScFunctionMgr* pStarCalcFunctionMgr; + static std::unique_ptr<ScFunctionMgr> xStarCalcFunctionMgr; static std::atomic<ScUnitConverter*> pUnitConverter; |