diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-10-25 19:20:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-10-26 10:06:33 +0200 |
commit | 30f1617bd873d9ccf343a280ba27f476d4c7726e (patch) | |
tree | fd179ab26b8d33bacf30b5c6ed50c7e050e77c4a /vcl/workben | |
parent | 7d5703ca50d719fbd82615fb81da7949fe163ae5 (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')
-rw-r--r-- | vcl/workben/mtfdemo.cxx | 4 |
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(); |