[Libreoffice-commits] core.git: sc/source

Eike Rathke erack at redhat.com
Tue Oct 20 03:44:06 PDT 2015


 sc/source/ui/view/tabvwsh3.cxx |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 9e7e264bdf9459487037345917aea7b35de7e7a0
Author: Eike Rathke <erack at redhat.com>
Date:   Tue Oct 20 12:40:04 2015 +0200

    adapt comments to reality
    
    Change-Id: Idfeca4a683ebb9616c19a42de650c4871f733ef5

diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx
index 85b0a96..d4badd8 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);
 }
 


More information about the Libreoffice-commits mailing list