diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-07-14 10:20:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-07-14 20:47:50 +0200 |
commit | 03f1d66a57e7093c85a906bc08e3ce3ee74f81e4 (patch) | |
tree | 7939bfa512366858030ff432475c83457895a899 /vcl | |
parent | b8903bc106dad036acb3d117e5c4fc955697fe02 (diff) |
gtk4: convert GtkSeparatorToolItem to GtkSeparator
Change-Id: I24c0e3b515df505085ae77c350eb6aecfc0db003
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118889
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk4/convert3to4.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/unx/gtk4/convert3to4.cxx b/vcl/unx/gtk4/convert3to4.cxx index 9d7fd36ae543..dc896a28cf4e 100644 --- a/vcl/unx/gtk4/convert3to4.cxx +++ b/vcl/unx/gtk4/convert3to4.cxx @@ -1171,6 +1171,10 @@ ConvertResult Convert3To4(const css::uno::Reference<css::xml::dom::XNode>& xNode { xClass->setNodeValue("GtkToggleButton"); } + else if (sClass == "GtkSeparatorToolItem") + { + xClass->setNodeValue("GtkSeparator"); + } else if (sClass == "GtkBox") { // reverse the order of the pack-type=end widgets |