helpcompiler/source/HelpIndexer.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1eaf11278a2f2f81fbff774fef73f72a6b1a4efb
Author:     Noel Grandin <[email protected]>
AuthorDate: Wed Jun 22 14:16:55 2022 +0200
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Wed Jun 22 22:21:10 2022 +0200

    fix build --with-help
    
    after
        commit 966d9757de471f2a5ea1ffa87cef019dcf1e0cb3
        Author: Noel Grandin <[email protected]>
        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 <[email protected]>

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";
 }

Reply via email to