From e6ef9f128e85961921b0b319087010fce1d59a74 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 31 May 2012 21:41:48 -0400 Subject: 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 --- sc/qa/unit/ucalc.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/qa/unit') 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(); { -- cgit