summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJoren De Cuyper <joren.libreoffice@telenet.be>2013-05-10 12:37:44 +0200
committerDavid Tardon <dtardon@redhat.com>2013-05-10 12:05:30 +0000
commit92fb9d8cbbf95f10aca244c408592c31e4127f6d (patch)
tree924a0339cd3bf62f7fb811fa4bc652a0d67ec236 /wizards
parent380dabe55dc8053f6cea13824eeba71b1aac4e46 (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> Reviewed-on: https://gerrit.libreoffice.org/3840
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/tools/Strings.xba4
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>