summaryrefslogtreecommitdiff
path: root/helpcompiler
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-06-22 14:16:55 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-06-22 22:21:10 +0200
commit1eaf11278a2f2f81fbff774fef73f72a6b1a4efb (patch)
treec02da502e6c362f90eaf01eb94a9c430d14a0b53 /helpcompiler
parent424a293664cbdffcceaa79756d59bb2d29080613 (diff)
fix build --with-help
after commit 966d9757de471f2a5ea1ffa87cef019dcf1e0cb3 Author: Noel Grandin <noel.grandin@collabora.co.uk> Date: Tue Jun 21 09:05:15 2022 +0200 clang-tidy modernize-pass-by-value in helpcompiler Change-Id: Ie7c47d950287d96020857589f826b063e0912df2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136281 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'helpcompiler')
-rw-r--r--helpcompiler/source/HelpIndexer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpcompiler/source/HelpIndexer.cxx b/helpcompiler/source/HelpIndexer.cxx
index fc6da05f1d56..e55f0760400b 100644
--- a/helpcompiler/source/HelpIndexer.cxx
+++ b/helpcompiler/source/HelpIndexer.cxx
@@ -34,7 +34,7 @@ HelpIndexer::HelpIndexer(OUString lang, OUString module,
std::u16string_view srcDir, std::u16string_view outDir)
: d_lang(std::move(lang)), d_module(std::move(module))
{
- d_indexDir = outDir + OUStringChar('/') + module + ".idxl";
+ d_indexDir = outDir + OUStringChar('/') + d_module + ".idxl";
d_captionDir = OUString::Concat(srcDir) + "/caption";
d_contentDir = OUString::Concat(srcDir) + "/content";
}