From 9e7e264bdf9459487037345917aea7b35de7e7a0 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Tue, 20 Oct 2015 12:40:04 +0200 Subject: adapt comments to reality Change-Id: Idfeca4a683ebb9616c19a42de650c4871f733ef5 --- sc/source/ui/view/tabvwsh3.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sc/source') diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx index 85b0a9681eac..d4badd8cd2d5 100644 --- a/sc/source/ui/view/tabvwsh3.cxx +++ b/sc/source/ui/view/tabvwsh3.cxx @@ -77,17 +77,17 @@ static sal_uInt16 lcl_ParseRange(ScRange& rScRange, const OUString& aAddress, Sc if ( (nResult & SCA_VALID) ) return nResult; - // try the default calc address convention + // try the default Calc (A1) address convention nResult = rScRange.Parse(aAddress, pDoc); if ( (nResult & SCA_VALID) ) return nResult; - // try the default calc address convention + // try the Excel A1 address convention nResult = rScRange.Parse(aAddress, pDoc, formula::FormulaGrammar::CONV_XL_A1); if ( (nResult & SCA_VALID) ) return nResult; - // try excel a1 + // try Excel R1C1 address convention return rScRange.Parse(aAddress, pDoc, formula::FormulaGrammar::CONV_XL_R1C1); } @@ -99,17 +99,17 @@ static sal_uInt16 lcl_ParseAddress(ScAddress& rScAddress, const OUString& aAddre if ( (nResult & SCA_VALID) ) return nResult; - // try the default calc address convention + // try the default Calc (A1) address convention nResult = rScAddress.Parse(aAddress, pDoc); if ( (nResult & SCA_VALID) ) return nResult; - // try the default calc address convention + // try the Excel A1 address convention nResult = rScAddress.Parse(aAddress, pDoc, formula::FormulaGrammar::CONV_XL_A1); if ( (nResult & SCA_VALID) ) return nResult; - // try excel a1 + // try Excel R1C1 address convention return rScAddress.Parse(aAddress, pDoc, formula::FormulaGrammar::CONV_XL_R1C1); } -- cgit