diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-24 12:29:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-24 13:29:01 +0200 |
commit | 78f63c2b1cd4e185f11486a7b2bdf7fd89ef1b03 (patch) | |
tree | 87db1c93e1e13d55162194cd6d7563126548e592 /sc/inc/columnspanset.hxx | |
parent | 27246b94029373c1678335122b8d074eacefc43b (diff) |
sc: rowcol: tdf#50916 convert column*
Change-Id: I6ed03ba9c8e1ae9f6837730fd5579f83198dc7b1
Reviewed-on: https://gerrit.libreoffice.org/81440
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/columnspanset.hxx')
-rw-r--r-- | sc/inc/columnspanset.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/columnspanset.hxx b/sc/inc/columnspanset.hxx index c75502f8bde8..99a99ee935c0 100644 --- a/sc/inc/columnspanset.hxx +++ b/sc/inc/columnspanset.hxx @@ -64,7 +64,7 @@ private: std::vector<std::unique_ptr<TableType>> maTables; bool const mbInit; - ColumnType& getColumn(SCTAB nTab, SCCOL nCol); + ColumnType& getColumn(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol); public: class Action @@ -89,11 +89,11 @@ public: const ColumnSpanSet& operator=(const ColumnSpanSet&) = delete; ~ColumnSpanSet(); - void set(SCTAB nTab, SCCOL nCol, SCROW nRow, bool bVal); - void set(SCTAB nTab, SCCOL nCol, SCROW nRow1, SCROW nRow2, bool bVal); - void set(const ScRange& rRange, bool bVal); + void set(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol, SCROW nRow, bool bVal); + void set(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol, SCROW nRow1, SCROW nRow2, bool bVal); + void set(const ScDocument& rDoc, const ScRange& rRange, bool bVal); - void set( SCTAB nTab, SCCOL nCol, const SingleColumnSpanSet& rSingleSet, bool bVal ); + void set(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol, const SingleColumnSpanSet& rSingleSet, bool bVal ); /** * Scan specified range in a specified sheet and mark all non-empty cells |