diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-15 16:01:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-17 12:35:51 +0200 |
commit | 0e6d7959afc72475c8cfabfd8dce9141e6932794 (patch) | |
tree | ff994665cdef37ec241680957019137087ee1989 /sc/inc | |
parent | 806b82d89f3bdf7ac0f9c25df15d40f8817f3353 (diff) |
Tokens2RangeStringXML ctor never called with null ScDocument*
and some more similar
Change-Id: Ia92791f4d225352fdb0992e1f2fe4652fe8d3504
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102904
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/consoli.hxx | 2 | ||||
-rw-r--r-- | sc/inc/tokenarray.hxx | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/consoli.hxx b/sc/inc/consoli.hxx index c00081a305b3..8d6bf621b3ef 100644 --- a/sc/inc/consoli.hxx +++ b/sc/inc/consoli.hxx @@ -83,7 +83,7 @@ public: SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ); void AddName( const OUString& rName ); - void OutputToDocument( ScDocument* pDestDoc, SCCOL nCol, SCROW nRow, SCTAB nTab ); + void OutputToDocument( ScDocument& rDestDoc, SCCOL nCol, SCROW nRow, SCTAB nTab ); void GetSize( SCCOL& rCols, SCROW& rRows ) const; SCROW GetInsertCount() const; diff --git a/sc/inc/tokenarray.hxx b/sc/inc/tokenarray.hxx index 3af5fbcb5ca1..eb3fa0dc4a8f 100644 --- a/sc/inc/tokenarray.hxx +++ b/sc/inc/tokenarray.hxx @@ -135,18 +135,18 @@ public: /** * Make all absolute references external references pointing to the old document * - * @param pOldDoc old document - * @param pNewDoc new document + * @param rOldDoc old document + * @param rNewDoc new document * @param rPos position of the cell to determine if the reference is in the copied area * @param bRangeName set for range names, range names have special handling for absolute sheet ref + relative col/row ref */ - void ReadjustAbsolute3DReferences( const ScDocument* pOldDoc, ScDocument* pNewDoc, const ScAddress& rPos, bool bRangeName = false ); + void ReadjustAbsolute3DReferences( const ScDocument& rOldDoc, ScDocument& rNewDoc, const ScAddress& rPos, bool bRangeName = false ); /** * Make all absolute references pointing to the copied range if the range is copied too * @param bCheckCopyArea should reference pointing into the copy area be adjusted independently from being absolute, should be true only for copy&paste between documents */ - void AdjustAbsoluteRefs( const ScDocument* pOldDoc, const ScAddress& rOldPos, const ScAddress& rNewPos, bool bCheckCopyArea ); + void AdjustAbsoluteRefs( const ScDocument& rOldDoc, const ScAddress& rOldPos, const ScAddress& rNewPos, bool bCheckCopyArea ); /** When copying a sheet-local named expression, move sheet references that point to the originating sheet to point to the new sheet instead. |