summaryrefslogtreecommitdiff
path: root/cui/source/customize
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-03-21 09:23:50 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-03-21 12:52:24 +0100
commitbec100c0742101f9fd378f21b20f0721262bfd32 (patch)
tree33c22e3fc848715948888d444dc651046a2ea21e /cui/source/customize
parent42fe3985ed93d79228f70ecd6d69218fb9c3d41a (diff)
coverity#1430229 Unchecked return value
Change-Id: I100125d723a83ec7846cf9651ecebd3df697ce58 Reviewed-on: https://gerrit.libreoffice.org/51695 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/customize')
-rw-r--r--cui/source/customize/cfg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index 429e8302eb31..7f27e15f695a 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -1632,7 +1632,7 @@ SvTreeListEntry* SvxConfigPage::AddFunction(
{
std::unique_ptr<weld::MessageDialog> xBox(Application::CreateMessageDialog(GetFrameWeld(),
VclMessageType::Info, VclButtonsType::Ok, CuiResId(RID_SVXSTR_MNUCFG_ALREADY_INCLUDED)));
- xBox->run();
+ (void)xBox->run();
delete pNewEntryData;
return nullptr;
}
@@ -3316,7 +3316,7 @@ void SvxIconSelectorDialog::ImportGraphics(
}
SvxIconChangeDialog aDialog(GetFrameWeld(), message);
- aDialog.run();
+ (void)aDialog.run();
}
}