summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-19 12:13:15 +0100
committerCaolán McNamara <caolan.mcnamara@collabora.com>2024-05-19 15:25:18 +0200
commit7e36bbd142ea80969c15f384759102d8175dedc3 (patch)
tree5ffedd19e1cf0ed7372c9f2c10de232a6a0626af /sw
parentbb5740bb4c79c6c9507d4dc127e9f4bac78afc2f (diff)
cid#1598236 silence Unchecked return value
Change-Id: Id5dfed646336847607df0bd2fd10d345ac8ed64e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167842 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/app/apphdl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/app/apphdl.cxx b/sw/source/uibase/app/apphdl.cxx
index 03657db5447f..28c766b3d3b1 100644
--- a/sw/source/uibase/app/apphdl.cxx
+++ b/sw/source/uibase/app/apphdl.cxx
@@ -414,7 +414,7 @@ void SwMailMergeWizardExecutor::ExecuteMailMergeWizard( const SfxItemSet * pArgs
const css::uno::Sequence< OUString > vPackages{ "libreoffice-base" };
xSyncDbusSessionHelper->InstallPackageNames(vPackages, OUString());
SolarMutexGuard aGuard;
- executeRestartDialog(comphelper::getProcessComponentContext(), nullptr, RESTART_REASON_MAILMERGE_INSTALL);
+ (void)executeRestartDialog(comphelper::getProcessComponentContext(), nullptr, RESTART_REASON_MAILMERGE_INSTALL);
}
catch (const css::uno::Exception &)
{