summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-06 14:30:33 +0000
committerMichael Stahl <michael.stahl@cib.de>2020-02-07 10:57:56 +0100
commit49162b28120838d7ec1b912dc428242de1330448 (patch)
tree6e53c4806c03020f14f68db4f6ad9133f6d7d836 /cui
parenttdf#130080 soffice.sh: Avoid exporting empty LC_ALL (diff)
downloadcore-49162b28120838d7ec1b912dc428242de1330448.tar.gz
core-49162b28120838d7ec1b912dc428242de1330448.zip
fix "Use data for document properties" checkbutton
regression since... commit 3a15c034be9f557f350d0ba1f3a842151066eaae Date: Tue Mar 12 09:59:35 2019 +0000 weld SvxGeneralTabPage Change-Id: I7c4624255f70c3f0c4ccd4b79ebae7750ed2bbe9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88110 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optgenrl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optgenrl.cxx b/cui/source/options/optgenrl.cxx
index e7d407874994..3c579dcc87f1 100644
--- a/cui/source/options/optgenrl.cxx
+++ b/cui/source/options/optgenrl.cxx
@@ -380,7 +380,7 @@ void SvxGeneralTabPage::Reset( const SfxItemSet* rSet )
vFields.front()->xEdit->grab_focus();
}
- m_xUseDataCB->set_sensitive( SvtSaveOptions().IsUseUserData() );
+ m_xUseDataCB->set_active(SvtSaveOptions().IsUseUserData());
}