diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-05-19 21:28:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-05-20 21:15:45 +0200 |
commit | 0abc99de2c98f57ee3846b0e689aed08b7c626af (patch) | |
tree | 7399fe6d75d30f22b99c9da968c67ee296b544ec /cui | |
parent | 7b4a3cefdd1137ce2e42616b2fb1dcf77d01db7b (diff) |
coverity#1435684 deliberate 'Constant' variable guards dead code
Change-Id: I0a5b36ad781bfc76295e91131bdc073dac0d6ea2
Reviewed-on: https://gerrit.libreoffice.org/54585
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')
-rw-r--r-- | cui/source/dialogs/SignSignatureLineDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/SignSignatureLineDialog.cxx b/cui/source/dialogs/SignSignatureLineDialog.cxx index a9fd2a506110..9f793884862e 100644 --- a/cui/source/dialogs/SignSignatureLineDialog.cxx +++ b/cui/source/dialogs/SignSignatureLineDialog.cxx @@ -147,7 +147,7 @@ void SignSignatureLineDialog::Apply() SfxObjectShell* pShell = SfxObjectShell::Current(); pShell->SignSignatureLine(m_aSignatureLineId, m_xSelectedCertifate); - bool bSuccess = false; // TODO + const bool bSuccess = false; // TODO if (bSuccess) { |