diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-31 21:41:48 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-31 21:43:48 -0400 |
commit | e6ef9f128e85961921b0b319087010fce1d59a74 (patch) | |
tree | e2aa331905ea64b909e85bb3945bf58f16f72135 /sc/qa/unit | |
parent | 02bd365494a59bb9080a4d73eafbde7903bd2cc9 (diff) |
Rename this option to make it sound more generic.
There may be other functions other than INDIRECT that take a string
reference. If so, we could re-use this option for those functions
as well.
Change-Id: I1e756298a094aa8197f578cb992904b7af5b2e4d
Diffstat (limited to 'sc/qa/unit')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 2d81aa1b3f37..71014a18320d 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -868,7 +868,7 @@ void testFuncINDIRECT(ScDocument* pDoc) } ScCalcConfig aConfig; - aConfig.meIndirectRefSyntax = formula::FormulaGrammar::CONV_OOO; + aConfig.meStringRefAddressSyntax = formula::FormulaGrammar::CONV_OOO; ScInterpreter::SetGlobalConfig(aConfig); pDoc->CalcAll(); { @@ -884,7 +884,7 @@ void testFuncINDIRECT(ScDocument* pDoc) } } - aConfig.meIndirectRefSyntax = formula::FormulaGrammar::CONV_XL_A1; + aConfig.meStringRefAddressSyntax = formula::FormulaGrammar::CONV_XL_A1; ScInterpreter::SetGlobalConfig(aConfig); pDoc->CalcAll(); { @@ -900,7 +900,7 @@ void testFuncINDIRECT(ScDocument* pDoc) } } - aConfig.meIndirectRefSyntax = formula::FormulaGrammar::CONV_XL_R1C1; + aConfig.meStringRefAddressSyntax = formula::FormulaGrammar::CONV_XL_R1C1; ScInterpreter::SetGlobalConfig(aConfig); pDoc->CalcAll(); { |