diff options
-rw-r--r-- | sc/source/core/tool/compiler.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx index bec4b2ec1318..61eeb761fe0d 100644 --- a/sc/source/core/tool/compiler.cxx +++ b/sc/source/core/tool/compiler.cxx @@ -5103,7 +5103,7 @@ bool ScCompiler::HandleTableRef() eState = ((eState == sClose) ? sSep : sStop); break; case ocPush: - if (eState == sOpen && (p->GetType() == svSingleRef || p->GetType() == svDoubleRef)) + if (eState == sOpen && p->GetType() == svSingleRef) { bColumnRange = true; eState = sLast; @@ -5155,11 +5155,6 @@ bool ScCompiler::HandleTableRef() } } break; - case svDoubleRef: - { - aColRange = mpToken->GetDoubleRef()->toAbs( aPos); - } - break; default: ; // nothing } |