sw/source/uibase/app/apphdl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 7e36bbd142ea80969c15f384759102d8175dedc3 Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Sun May 19 12:13:15 2024 +0100 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Sun May 19 15:25:18 2024 +0200 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.mcnam...@collabora.com> 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 &) {