summaryrefslogtreecommitdiff
path: root/sw
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 /sw
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 'sw')
-rw-r--r--sw/source/ui/dbui/mmoutputtypepage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dbui/mmoutputtypepage.cxx b/sw/source/ui/dbui/mmoutputtypepage.cxx
index fe6c362a7bbd..6f1176f6cbdf 100644
--- a/sw/source/ui/dbui/mmoutputtypepage.cxx
+++ b/sw/source/ui/dbui/mmoutputtypepage.cxx
@@ -548,7 +548,7 @@ void SwSendMailDialog::DocumentSent( uno::Reference< mail::XMailMessage> const &
if (pError)
{
SwSendWarningBox_Impl aDlg(GetFrameWeld(), *pError);
- aDlg.run();
+ (void)aDlg.run();
}
}