Kaydet (Commit) 0658b056 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1434900 Uninitialized scalar field

Change-Id: Ia4758d8e1fb50d25d8efeb9e3e1950e47bf3401c
Reviewed-on: https://gerrit.libreoffice.org/53028Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst f7de9473
......@@ -56,12 +56,13 @@ SignSignatureLineDialog::SignSignatureLineDialog(weld::Widget* pParent, Referenc
, m_xLabelHint(m_xBuilder->weld_label("label_hint"))
, m_xLabelHintText(m_xBuilder->weld_label("label_hint_text"))
, m_xLabelAddComment(m_xBuilder->weld_label("label_add_comment"))
, m_bShowSignDate(false)
{
Reference<container::XIndexAccess> xIndexAccess(m_xModel->getCurrentSelection(),
UNO_QUERY_THROW);
m_xShapeProperties.set(xIndexAccess->getByIndex(0), UNO_QUERY_THROW);
bool bIsSignatureLine;
bool bIsSignatureLine(false);
m_xShapeProperties->getPropertyValue("IsSignatureLine") >>= bIsSignatureLine;
if (!bIsSignatureLine)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment