wizards/source/sfdocuments/SF_Calc.xba | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit fcd18913d5e8450681522c85cf5313f1d3f43aa9 Author: Jean-Pierre Ledure <j...@ledure.be> AuthorDate: Wed Aug 14 17:41:35 2024 +0200 Commit: Jean-Pierre Ledure <j...@ledure.be> CommitDate: Thu Aug 15 18:04:28 2024 +0200 ScriptForge (SF_Calc) Typos Comments needed to be made compliant with code in relation to Calc sheet limits. Change-Id: I67962540e484ab1d51bc79f8ee7e7a73f9f25a2b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171872 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <j...@ledure.be> diff --git a/wizards/source/sfdocuments/SF_Calc.xba b/wizards/source/sfdocuments/SF_Calc.xba index a14be220ef37..1d2a04056065 100644 --- a/wizards/source/sfdocuments/SF_Calc.xba +++ b/wizards/source/sfdocuments/SF_Calc.xba @@ -1683,11 +1683,11 @@ End Function ' SFDocuments.SF_Calc.Forms REM ----------------------------------------------------------------------------- Function GetColumnName(Optional ByVal ColumnNumber As Variant) As String -''' Convert a column number (range 1, 2,..1024) into its letter counterpart (range 'A', 'B',..'AMJ'). +''' Convert a column number (range 1, 2,..16384) into its letter counterpart (range 'A', 'B',..'XFD'). ''' Args: -''' ColumnNumber: the column number, must be in the interval 1 ... 1024 +''' ColumnNumber: the column number, must be in the interval 1 ... 16384 ''' Returns: -''' a string representation of the column name, in range 'A'..'AMJ' +''' a string representation of the column name, in range 'A'..'XFD' ''' If ColumnNumber is not in the allowed range, returns a zero-length string ''' Example: ''' MsgBox oDoc.GetColumnName(1022) ' "AMH"