diff options
author | Eike Rathke <erack@redhat.com> | 2020-04-17 16:21:30 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2020-04-17 16:22:02 +0200 |
commit | 396b5ce076145ccda46cbfdac82faaad899a4e9d (patch) | |
tree | d005ec7bbc13eeb244d8e362b38c6eff64367394 /sc/source | |
parent | 935259d817bac08837616a52d83632ace35ce9ef (diff) |
Break overly long line
... and make it more legible.
Change-Id: Ie5325f614cf8d95290e04c9b0e9fa29f353d8301
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/tool/interpr8.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/source/core/tool/interpr8.cxx b/sc/source/core/tool/interpr8.cxx index ce978ea094a6..9fc1e799884a 100644 --- a/sc/source/core/tool/interpr8.cxx +++ b/sc/source/core/tool/interpr8.cxx @@ -1974,8 +1974,9 @@ void ScInterpreter::ScSwitch_MS() else aStr = GetString(); nParamCount--; - if ( (nGlobalError != FormulaError::NONE && nParamCount < 2) || (( isValue && rtl::math::approxEqual( fRefVal, fVal ) ) || - ( !isValue && aRefStr.getDataIgnoreCase() == aStr.getDataIgnoreCase() )) ) + if ((nGlobalError != FormulaError::NONE && nParamCount < 2) + || (isValue && rtl::math::approxEqual( fRefVal, fVal)) + || (!isValue && aRefStr.getDataIgnoreCase() == aStr.getDataIgnoreCase())) { // TRUE bFinished = true; |