summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorJan-Marek Glogowski <jan-marek.glogowski@extern.cib.de>2019-12-11 19:32:55 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-12-13 16:08:24 +0100
commita0b6524fb369c11b5684b37f3328ef6efe5e07ba (patch)
tree6429a8ca732cf273b9adf0378fdadb45b50d2407 /vcl/source
parentdff70ffce88b69a1d75036abb6a9e28cfd51c315 (diff)
Revert "Enable/Disable of children shouldn't be necessary"
This currently breaks the child sensitivity handling of frames used in the PDF export, when toggling the form export check box. I also tried to add a set_sensitive to SalInstanceContainer, but that didn't work. I found this while debugging tdf#127493, but I'm don't know, this is the correct fix wrt welding. This reverts commit 1d69cf32a73c0720882731ebf3eb5d2f07fce246. Change-Id: Ib468c82124dc3d1030d7b08b2e139f49f3c00630 Reviewed-on: https://gerrit.libreoffice.org/84976 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/app/salvtables.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 920e8e7765e9..133ddca2ed6c 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -315,7 +315,7 @@ public:
virtual void set_sensitive(bool sensitive) override
{
- m_xWidget->Enable(sensitive, false);
+ m_xWidget->Enable(sensitive);
}
virtual bool get_sensitive() const override