diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-30 06:16:45 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-12-30 06:32:05 +0100 |
commit | 4ebdadfda60f108556ea9cc4436dd440bf122ca4 (patch) | |
tree | eb1575791a7ed35b9e5c4f14c49fb9c0ef802590 | |
parent | 452623cf22c972f4f3865c2e7db961a73021d169 (diff) |
use the correct tab for sheet local names, fdo#81195
Change-Id: I7e8b7ed552a37c6d9c6ce7c75765267b343d508c
-rw-r--r-- | sc/source/filter/excel/xeformula.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/excel/xeformula.cxx b/sc/source/filter/excel/xeformula.cxx index 214d979e991e..145aaf368448 100644 --- a/sc/source/filter/excel/xeformula.cxx +++ b/sc/source/filter/excel/xeformula.cxx @@ -2078,8 +2078,8 @@ void XclExpFmlaCompImpl::ProcessDefinedName( const XclExpScToken& rTokData ) { SCTAB nTab = SCTAB_GLOBAL; bool bGlobal = rTokData.mpScToken->IsGlobal(); - if (!bGlobal && mxData->mpScBasePos) - nTab = mxData->mpScBasePos->Tab(); + if (!bGlobal) + nTab = GetCurrScTab(); XclExpNameManager& rNameMgr = GetNameManager(); sal_uInt16 nNameIdx = rNameMgr.InsertName(nTab, rTokData.mpScToken->GetIndex()); |