diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-06-13 20:00:16 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-06-13 20:31:53 +0300 |
commit | 83358557c14dd3796c3a6c0a31e5a49fb857e91b (patch) | |
tree | 11a524643e419db837de13769ffa2bf1959c64be /sc/source | |
parent | a5d26d09d62978aaa8872e756ba1890f6dac48e7 (diff) |
Use FormulaTokenArray::FirstToken() in one more place
Change-Id: If43aaff9665b5be2d9b358dea0f3369be755791a
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 2 |
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 ) || |