diff options
Diffstat (limited to 'scaddins/source')
-rw-r--r-- | scaddins/source/analysis/analysis.src | 16 | ||||
-rw-r--r-- | scaddins/source/analysis/analysishelper.cxx | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/scaddins/source/analysis/analysis.src b/scaddins/source/analysis/analysis.src index d121fe42b89d..c850496dec9d 100644 --- a/scaddins/source/analysis/analysis.src +++ b/scaddins/source/analysis/analysis.src @@ -425,17 +425,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS Resource ANALYSIS_Gcd { - String 1 // description Gcd_add + String 1 // description Gcd_Excel2003 { - Text [ en-US ] = "Returns the greatest common divisor"; + Text [ en-US ] = "Returns the greatest common divisor.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."; }; - String 2 // name of parameter 1 Gcd_add + String 2 // name of parameter 1 Gcd_Excel2003 { Text [ en-US ] = "Number(s)"; }; - String 3 // description of parameter 1 Gcd_add + String 3 // description of parameter 1 Gcd_Excel2003 { Text [ en-US ] = "Number or list of numbers"; }; @@ -443,17 +443,17 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS Resource ANALYSIS_Lcm { - String 1 // description Lcm_add + String 1 // description Lcm_Excel2003 { - Text [ en-US ] = "Returns the least common multiple"; + Text [ en-US ] = "Returns the least common multiple.\nThis function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."; }; - String 2 // name of parameter 1 Lcm_add + String 2 // name of parameter 1 Lcm_Excel2003 { Text [ en-US ] = "Number(s)"; }; - String 3 // description of parameter 1 Lcm_add + String 3 // description of parameter 1 Lcm_Excel2003 { Text [ en-US ] = "Number or list of numbers"; }; diff --git a/scaddins/source/analysis/analysishelper.cxx b/scaddins/source/analysis/analysishelper.cxx index d22d34b7b2fa..517f0919e9f8 100644 --- a/scaddins/source/analysis/analysishelper.cxx +++ b/scaddins/source/analysis/analysishelper.cxx @@ -62,8 +62,8 @@ const FuncDataBase pFuncDatas[] = FUNCDATA( Mround, UNIQUE, STDPAR, 2, FDCat_Math ), FUNCDATA( Sqrtpi, UNIQUE, STDPAR, 1, FDCat_Math ), FUNCDATA( Randbetween, UNIQUE, STDPAR, 2, FDCat_Math ), - FUNCDATA( Gcd, DOUBLE, INTPAR, 1, FDCat_Math ), - FUNCDATA( Lcm, DOUBLE, INTPAR, 1, FDCat_Math ), + FUNCDATAS( Gcd, DOUBLE, INTPAR, 1, FDCat_Math, "_EXCEL2003" ), + FUNCDATAS( Lcm, DOUBLE, INTPAR, 1, FDCat_Math, "_EXCEL2003" ), FUNCDATA( Besseli, UNIQUE, STDPAR, 2, FDCat_Tech ), FUNCDATA( Besselj, UNIQUE, STDPAR, 2, FDCat_Tech ), FUNCDATA( Besselk, UNIQUE, STDPAR, 2, FDCat_Tech ), |