diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-11-27 15:02:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-11-27 21:06:21 +0100 |
commit | 2eb0cadf0395c60198e36307222de3dd1e7729a6 (patch) | |
tree | 13de18915f50783714a90545bcae7480ddcfc978 /shell/source | |
parent | c056f4ade7efec94d2cdc19c184486d834638df2 (diff) |
loplugin:unnecessaryparen (clang-cl)
Change-Id: I5452235287fd5986de25ee542edd57bf1abded52
Reviewed-on: https://gerrit.libreoffice.org/45338
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell/source')
-rw-r--r-- | shell/source/win32/simplemail/smplmailclient.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/win32/simplemail/smplmailclient.cxx b/shell/source/win32/simplemail/smplmailclient.cxx index b38061c37037..75cdf75eda11 100644 --- a/shell/source/win32/simplemail/smplmailclient.cxx +++ b/shell/source/win32/simplemail/smplmailclient.cxx @@ -102,7 +102,7 @@ namespace /* private */ if (senddocUrl.isEmpty()) { - senddocUrl = ( "$BRAND_BASE_DIR/" LIBO_LIBEXEC_FOLDER "/senddoc.exe"); + senddocUrl = "$BRAND_BASE_DIR/" LIBO_LIBEXEC_FOLDER "/senddoc.exe"; rtl::Bootstrap::expandMacros(senddocUrl); //TODO: detect failure } return senddocUrl; |