diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-11-19 09:41:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-11-19 12:26:34 +0100 |
commit | c705a5a65c88f11c197af19a6586175dc7ddc3c6 (patch) | |
tree | 2ac73503ec6ae8e09fc38d06f0b8e91153f3d6fd /vcl/unx | |
parent | addf580c2846e8de6457c9e710faedd3f0a7a7de (diff) |
gtk4: remove constrain-to property
Change-Id: I18f0b72fff31f555873a0808f171e4c1746a4411
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125539
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/gtk4/convert3to4.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/unx/gtk4/convert3to4.cxx b/vcl/unx/gtk4/convert3to4.cxx index d6f1e7e0fa29..5b6e1f7780e2 100644 --- a/vcl/unx/gtk4/convert3to4.cxx +++ b/vcl/unx/gtk4/convert3to4.cxx @@ -463,6 +463,9 @@ ConvertResult Convert3To4(const css::uno::Reference<css::xml::dom::XNode>& xNode if (sName == "events") xRemoveList.push_back(xChild); + if (sName == "constrain-to") + xRemoveList.push_back(xChild); + if (sName == "activates-default") { if (GetParentObjectType(xChild) == "GtkSpinButton") |