diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-11 16:44:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-11 17:33:51 +0100 |
commit | edc18edbdc727757ad672773998cdab31e3bc382 (patch) | |
tree | ad410496963baafaa201c5dd4322ade27d25f8b5 /sw | |
parent | a5defe0dde638c7dd8e99cbef7e22bace572a7ff (diff) |
coverity#704073 Unchecked return value
Change-Id: I4fe24b6c91d7302835c3366ff490f5a4455fc58f
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/uiview/view2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uiview/view2.cxx b/sw/source/uibase/uiview/view2.cxx index cbb7a88ff7fb..be0c94bec581 100644 --- a/sw/source/uibase/uiview/view2.cxx +++ b/sw/source/uibase/uiview/view2.cxx @@ -590,7 +590,7 @@ void SwView::Execute(SfxRequest &rReq) SfxPasswordDialog aPasswdDlg( pParent ); aPasswdDlg.SetMinLen( 1 ); //#i69751# the result of Execute() can be ignored - aPasswdDlg.Execute(); + (void)aPasswdDlg.Execute(); OUString sNewPasswd( aPasswdDlg.GetPassword() ); Sequence <sal_Int8> aNewPasswd = pIDRA->GetRedlinePassword(); SvPasswordHelper::GetHashPassword( aNewPasswd, sNewPasswd ); |