summaryrefslogtreecommitdiff
path: root/helpcompiler/source/HelpIndexer.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-07-26 12:20:59 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-07-27 08:28:27 +0200
commite6d79e896c540c3e758ebc4b730ca71987c2cee6 (patch)
tree5adbfa33c1503995f0b200771ae9beb0066a6a96 /helpcompiler/source/HelpIndexer.cxx
parent1a400fc39023bcf471a6d4448acbf1a2afcb274c (diff)
loplugin:returnconstant in helpcompiler
and fix scanForFiles to return false on error Change-Id: I246e906de9985947be421d361340874c94a2102d Reviewed-on: https://gerrit.libreoffice.org/58085 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'helpcompiler/source/HelpIndexer.cxx')
-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 870db09e0faa..d2380c53d3d1 100644
--- a/helpcompiler/source/HelpIndexer.cxx
+++ b/helpcompiler/source/HelpIndexer.cxx
@@ -96,7 +96,7 @@ bool HelpIndexer::scanForFiles(OUString const & path) {
osl::Directory dir(path);
if (osl::FileBase::E_None != dir.open()) {
d_error = "Error reading directory " + path;
- return true;
+ return false;
}
osl::DirectoryItem item;