summaryrefslogtreecommitdiff
path: root/sc/source/core/data/column3.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-06-13 19:24:50 +0300
committerTor Lillqvist <tml@collabora.com>2017-06-13 20:31:51 +0300
commitd677d7e30116ebd85bf757608a9a5426e73ac618 (patch)
tree39429dcdc5249e0bb901b4e87cb92a752e8c8f91 /sc/source/core/data/column3.cxx
parent0057b2163eca1781c85a4dbb90bcf8d5258a4ea5 (diff)
Use FormulaTokenArray::FirstToken() in one more place
Change-Id: I5b8e8997586255004820df97f1ea10494b536d3b
Diffstat (limited to 'sc/source/core/data/column3.cxx')
-rw-r--r--sc/source/core/data/column3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index a19675dd7341..92765d1314bc 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -981,7 +981,7 @@ public:
ScTokenArray* pCode = rSrcCell.GetCode();
if (pCode && pCode->GetLen() == 1)
{
- const formula::FormulaToken* p = pCode->First();
+ const formula::FormulaToken* p = pCode->FirstToken();
if (p->GetOpCode() == ocTrue || p->GetOpCode() == ocFalse)
// This is a boolean formula.
bForceFormula = true;