diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-11-08 09:43:14 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-11-08 11:22:00 +0100 |
commit | 20d125ce61561a2ab54a99d77112d83293820e70 (patch) | |
tree | ea7e39bf2a4c3bb02a5e8bc010ea73c0cd30eb21 /wizards | |
parent | c784b3da15102caf1022e83371863a86766e69cd (diff) |
Fix typos
Change-Id: I79d8cd8f66ee83c2af42a828596e852248d51138
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105439
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/scriptforge/SF_Array.xba | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/scriptforge/SF_Array.xba b/wizards/source/scriptforge/SF_Array.xba index 8ffc64127a0f..e219a792e134 100644 --- a/wizards/source/scriptforge/SF_Array.xba +++ b/wizards/source/scriptforge/SF_Array.xba @@ -879,7 +879,7 @@ Try: ' Check type and copy all items of the line For i = 0 To lCol If Left(vLine(i), 1) = """" Then sItem = SF_String.Unquote(vLine(i)) Else sItem = vLine(i) ' Unquote only when useful - ' Interprete the individual line item + ' Interpret the individual line item Select Case True Case IsNumeric(sItem) If InStr(sItem, ".") + InStr(1, sItem, "e", 1) > 0 Then vItem = Val(sItem) Else vItem = CLng(sItem) |