diff options
author | Joren De Cuyper <joren.libreoffice@telenet.be> | 2013-05-10 12:37:44 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-05-10 11:43:41 +0000 |
commit | fb889fa870badb051a48d648f722b7895c6f8896 (patch) | |
tree | a835bc00397f1aad447ee963ec5246cb02710210 /wizards/source | |
parent | 1857688e1f4ba982d147a9cac69fad948361d1c0 (diff) |
Solve fdo#64406 Missing right closing parenthesis
Change-Id: I3812b60f097b1daf554bf2d337b126e8a8067573
Reviewed-on: https://gerrit.libreoffice.org/3837
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'wizards/source')
-rw-r--r-- | wizards/source/tools/Strings.xba | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/source/tools/Strings.xba b/wizards/source/tools/Strings.xba index 5ff7ca22e5b8..f91b8f4dff87 100644 --- a/wizards/source/tools/Strings.xba +++ b/wizards/source/tools/Strings.xba @@ -26,7 +26,7 @@ Public sProductname as String Function ElimChar(ByVal BigString as String, ElimArray() as String) Dim i% ,n% For i = 0 to Ubound(ElimArray) - BigString = DeleteStr(BigString,ElimArray(i) + BigString = DeleteStr(BigString,ElimArray(i)) Next ElimChar = BigString End Function @@ -466,4 +466,4 @@ WRONGDATATYPE: End If NOERR: End Function -</script:module>
\ No newline at end of file +</script:module> |