summaryrefslogtreecommitdiff
path: root/vcl/workben/mtfdemo.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-10-25 19:20:07 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-10-26 10:06:33 +0200
commit30f1617bd873d9ccf343a280ba27f476d4c7726e (patch)
treefd179ab26b8d33bacf30b5c6ed50c7e050e77c4a /vcl/workben/mtfdemo.cxx
parent7d5703ca50d719fbd82615fb81da7949fe163ae5 (diff)
ofz#1493240 Unchecked return value
Change-Id: I17ffbd28d56513ed7b39c29f74598c7517f44190 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124160 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/workben/mtfdemo.cxx')
-rw-r--r--vcl/workben/mtfdemo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/workben/mtfdemo.cxx b/vcl/workben/mtfdemo.cxx
index 9829c5b711f7..eb81c3363b16 100644
--- a/vcl/workben/mtfdemo.cxx
+++ b/vcl/workben/mtfdemo.cxx
@@ -154,8 +154,8 @@ private:
OUString sWorkingDir, sFileUrl;
osl_getProcessWorkingDir(&sWorkingDir.pData);
- osl::FileBase::getFileURLFromSystemPath(aFilename, sFileUrl);
- osl::FileBase::getAbsoluteFileURL(sWorkingDir, sFileUrl, maFileName);
+ (void)osl::FileBase::getFileURLFromSystemPath(aFilename, sFileUrl);
+ (void)osl::FileBase::getAbsoluteFileURL(sWorkingDir, sFileUrl, maFileName);
uno::Reference<uno::XComponentContext> xComponentContext
= ::cppu::defaultBootstrap_InitialComponentContext();