diff options
author | Eike Rathke <erack@redhat.com> | 2015-10-20 12:40:04 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-10-20 12:42:41 +0200 |
commit | 9e7e264bdf9459487037345917aea7b35de7e7a0 (patch) | |
tree | 948a24067775b1a23b0bcc4ff3b9ccc52f0f10fd /sc/source | |
parent | 4e097c10105759357932da8073a82df408c1f165 (diff) |
adapt comments to reality
Change-Id: Idfeca4a683ebb9616c19a42de650c4871f733ef5
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/view/tabvwsh3.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
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); } |