summaryrefslogtreecommitdiff
path: root/vcl/source/image
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-05-06 14:59:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-05-06 22:03:50 +0200
commitec3eac9cfeafca69c61ef7b50687a897087f1835 (patch)
tree4dcb044d277c6725c9571ca71635f87856e85fc0 /vcl/source/image
parentf0886f4e7654078bd053c8d400b682171aff850b (diff)
coverity#1435442 silence Unchecked return value
Change-Id: Ifb8a72f250e20f2932c0c03a4d41c999b85db0a3 Reviewed-on: https://gerrit.libreoffice.org/53916 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/image')
-rw-r--r--vcl/source/image/ImplImageTree.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/image/ImplImageTree.cxx b/vcl/source/image/ImplImageTree.cxx
index 274c4e60f8d2..d48cd3044b07 100644
--- a/vcl/source/image/ImplImageTree.cxx
+++ b/vcl/source/image/ImplImageTree.cxx
@@ -604,7 +604,7 @@ bool ImplImageTree::checkPathAccess()
css::uno::Reference<css::container::XNameAccess> const & ImplImageTree::getNameAccess()
{
- checkPathAccess();
+ (void)checkPathAccess();
return getCurrentIconSet().maNameAccess;
}