summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-01-07 10:11:02 +0200
committerTor Lillqvist <tml@collabora.com>2014-01-07 10:11:02 +0200
commite1b14fa6557f0ded8b5149e28e00861b296dcb34 (patch)
tree272f29ac53c17ba88d1bc528b973b054e9ab8350 /vbahelper
parent66e173eb4456639ecd2e75fbb23a557a5b7c5932 (diff)
Fix syntax error
Change-Id: I3967658c001479d0adc7a0f60dea97d1c0c64eb2
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbahelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/vbahelper/vbahelper.cxx b/vbahelper/source/vbahelper/vbahelper.cxx
index 6b184a6ae77a..a3bcc5154f62 100644
--- a/vbahelper/source/vbahelper/vbahelper.cxx
+++ b/vbahelper/source/vbahelper/vbahelper.cxx
@@ -607,7 +607,7 @@ OUString VBAToRegexp(const OUString &rIn, bool bForLike )
case '[':
case '?':
case '*':
- sResult.append(('\\');
+ sResult.append('\\');
sResult.append(*start);
break;
case ']':