diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-27 00:36:04 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-27 21:56:38 +0200 |
commit | 7bc21cfd16b4289dd072fa82f4d38ddb1498ed2d (patch) | |
tree | d43cb0724dd06d6640d2b929254ac4c34db5f347 | |
parent | ecfe650f43292518117a2148ff02a458ce1b2028 (diff) |
push the whole range to the cell range list
Change-Id: I25e8ca24530872ba0277aa9e0ebc8262606dcf20
Reviewed-on: https://gerrit.libreoffice.org/39314
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r-- | sc/source/core/data/colorscale.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx index d14b0622be54..916143664b81 100644 --- a/sc/source/core/data/colorscale.cxx +++ b/sc/source/core/data/colorscale.cxx @@ -53,7 +53,7 @@ void ScFormulaListener::startListening(ScTokenArray* pArr, const ScRange& rRange if (aRange.IsValid()) mpDoc->StartListeningArea(aRange, false, this); - maCells.push_back(aCell); + maCells.push_back(aRange); } break; case formula::svDoubleRef: |