summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-04-23 15:11:49 +0200
committerEike Rathke <erack@redhat.com>2015-04-23 15:18:02 +0200
commit42d34fe0ae1bad6aed441405ed423bbbd4335fb9 (patch)
treef7121fdc59c57c0928f651fd6674e2ecef79b176 /sc
parentce287a872ef435a207d4c22ddcccc60963165376 (diff)
TableRef: doubleref is not possible as one column specifier
Change-Id: Id29e6c8903979ef238c684d96fc47f72699b948a
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/compiler.cxx7
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
}