summaryrefslogtreecommitdiff
path: root/sfx2/source/control
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-12 14:24:17 +0100
committerCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-12 19:39:10 +0200
commit0025c300d6e952a4252fb3bdb7b4b91d1f7e59ec (patch)
treeea3e9345f6baa73c7272c5eb4448d3112bfb768f /sfx2/source/control
parent970ee1d96cedef06a65997e40bf4d0402347fadd (diff)
cid#1597307 silence Unchecked return value
and cid#1597304 Unchecked return value cid#1597303 Unchecked return value cid#1597306 Unchecked return value cid#1597305 Unchecked return value Change-Id: I2fa1c467751405d3b69f1d9b552232e4d52b610e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167554 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sfx2/source/control')
-rw-r--r--sfx2/source/control/shell.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/shell.cxx b/sfx2/source/control/shell.cxx
index f368d3d2824d..f87fbb7d8282 100644
--- a/sfx2/source/control/shell.cxx
+++ b/sfx2/source/control/shell.cxx
@@ -281,7 +281,7 @@ void SfxShell::HandleOpenXmlFilterSettings(SfxRequest & rReq)
try
{
uno::Reference < ui::dialogs::XExecutableDialog > xDialog = ui::dialogs::XSLTFilterDialog::create( ::comphelper::getProcessComponentContext() );
- xDialog->execute();
+ (void)xDialog->execute();
}
catch (const uno::Exception&)
{