[Libreoffice-commits] core.git: sw/source

Samuel Mehrbrodt Samuel.Mehrbrodt at cib.de
Tue Mar 20 06:45:37 UTC 2018


 sw/source/uibase/dialog/SignatureLineDialog.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2068e1a556af412f77fe88a6765e50d326d225c7
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date:   Mon Mar 19 11:42:16 2018 +0100

    tdf#83877 SignatureLineDialog: Fix reading "can add comments" property
    
    Change-Id: I771428a37a624f80dba2db9a10297d3a1624f215
    Reviewed-on: https://gerrit.libreoffice.org/51546
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>

diff --git a/sw/source/uibase/dialog/SignatureLineDialog.cxx b/sw/source/uibase/dialog/SignatureLineDialog.cxx
index 8d3df885beff..bc2db9a9dab1 100644
--- a/sw/source/uibase/dialog/SignatureLineDialog.cxx
+++ b/sw/source/uibase/dialog/SignatureLineDialog.cxx
@@ -74,7 +74,7 @@ SignatureLineDialog::SignatureLineDialog(SwView& rView)
     xProps->getPropertyValue("SignatureLineSigningInstructions") >>= aSigningInstructions;
     m_xEditInstructions->set_text(aSigningInstructions);
     bool bCanAddComments = false;
-    xProps->getPropertyValue("SignatureLineShowSignDate") >>= bCanAddComments;
+    xProps->getPropertyValue("SignatureLineCanAddComment") >>= bCanAddComments;
     m_xCheckboxCanAddComments->set_active(bCanAddComments);
     bool bShowSignDate = false;
     xProps->getPropertyValue("SignatureLineShowSignDate") >>= bShowSignDate;


More information about the Libreoffice-commits mailing list