summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-06-13 20:00:16 +0300
committerTor Lillqvist <tml@collabora.com>2017-06-13 20:31:53 +0300
commit83358557c14dd3796c3a6c0a31e5a49fb857e91b (patch)
tree11a524643e419db837de13769ffa2bf1959c64be /sc/source
parenta5d26d09d62978aaa8872e756ba1890f6dac48e7 (diff)
Use FormulaTokenArray::FirstToken() in one more place
Change-Id: If43aaff9665b5be2d9b358dea0f3369be755791a
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx
index 4231d447ba58..c47b7dc74643 100644
--- a/sc/source/ui/condformat/condformatdlgentry.cxx
+++ b/sc/source/ui/condformat/condformatdlgentry.cxx
@@ -326,7 +326,7 @@ IMPL_LINK(ScConditionFrmtEntry, OnEdChanged, Edit&, rEdit, void)
}
// Recognized col/row name or string token, warn the user
- formula::FormulaToken* token = ta->First();
+ formula::FormulaToken* token = ta->FirstToken();
formula::StackVar t = token->GetType();
OpCode op = token->GetOpCode();
if( ( op == ocColRowName ) ||