diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-23 18:37:52 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-24 10:54:06 +0200 |
commit | 3eb5ab6efe4229db0ec2bb177d892f2604f49411 (patch) | |
tree | 4c9e00f63c0f9d9b0caf3afb5cb570d0b9b47a72 /sc/inc/token.hxx | |
parent | 4fb9d7b69c4fb10107210c2f851040f7c259e413 (diff) |
loplugin:constparam in sc part3
Change-Id: I8abc44b9f0bcd5e39fd8a94abafaf80aadcd26ca
Reviewed-on: https://gerrit.libreoffice.org/41496
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/token.hxx')
-rw-r--r-- | sc/inc/token.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx index 8d561af85760..7e20b691d96b 100644 --- a/sc/inc/token.hxx +++ b/sc/inc/token.hxx @@ -312,7 +312,7 @@ protected: ScConstMatrixRef xMatrix; formula::FormulaConstTokenRef xUpperLeft; public: - ScMatrixCellResultToken( const ScConstMatrixRef& pMat, formula::FormulaToken* pUL ); + ScMatrixCellResultToken( const ScConstMatrixRef& pMat, const formula::FormulaToken* pUL ); ScMatrixCellResultToken( const ScMatrixCellResultToken& r ); virtual ~ScMatrixCellResultToken() override; virtual double GetDouble() const override; @@ -338,7 +338,7 @@ private: SCROW nRows; SCCOL nCols; public: - ScMatrixFormulaCellToken( SCCOL nC, SCROW nR, const ScConstMatrixRef& pMat, formula::FormulaToken* pUL ); + ScMatrixFormulaCellToken( SCCOL nC, SCROW nR, const ScConstMatrixRef& pMat, const formula::FormulaToken* pUL ); ScMatrixFormulaCellToken( SCCOL nC, SCROW nR ); ScMatrixFormulaCellToken( const ScMatrixFormulaCellToken& r ); virtual ~ScMatrixFormulaCellToken() override; |