diff options
author | Eike Rathke <erack@redhat.com> | 2015-04-23 15:11:49 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-04-23 15:18:02 +0200 |
commit | 42d34fe0ae1bad6aed441405ed423bbbd4335fb9 (patch) | |
tree | f7121fdc59c57c0928f651fd6674e2ecef79b176 | |
parent | ce287a872ef435a207d4c22ddcccc60963165376 (diff) |
TableRef: doubleref is not possible as one column specifier
Change-Id: Id29e6c8903979ef238c684d96fc47f72699b948a
-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 } |