diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-15 09:50:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-16 09:43:14 +0200 |
commit | 4e65a506f29c886195be3ee17e166a9fe1cb7a7a (patch) | |
tree | 1f4ea0e189601ed07abe8fd45e6d7bee33734e04 /sc/inc/document.hxx | |
parent | bd8083916362d121cc7b16d273b5983a11eb1bda (diff) |
GetChartRanges never passed a null ScDocument*
Change-Id: I021544d0cdfb68f6e30a4bb229eb0e8b3ea695d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102789
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/inc/document.hxx')
-rw-r--r-- | sc/inc/document.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index 370effa1b01b..36bd437c2773 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -840,7 +840,7 @@ public: css::uno::Reference< css::chart2::XChartDocument > GetChartByName( const OUString& rChartName ); - SC_DLLPUBLIC void GetChartRanges( const OUString& rChartName, std::vector< ScRangeList >& rRanges, const ScDocument* pSheetNameDoc ); + SC_DLLPUBLIC void GetChartRanges( const OUString& rChartName, std::vector< ScRangeList >& rRanges, const ScDocument& rSheetNameDoc ); void SetChartRanges( const OUString& rChartName, const std::vector< ScRangeList >& rRanges ); void UpdateChartArea( const OUString& rChartName, const ScRange& rNewArea, |