vcl/unx/gtk4/convert3to4.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a8908d8a27f76b8548ce4eb6915569ddd04b0f87 Author: Michael Weghorn <[email protected]> AuthorDate: Tue Nov 18 00:50:25 2025 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Tue Nov 18 08:21:16 2025 +0100 gtk4: Expect GTK min version 3.24 in .ui files Adjust this assert according to commit fef506cb5c62f16c0d51b9e4c998f159f1b6a6e5 Author: Michael Weghorn <[email protected]> Date: Wed Nov 5 18:04:15 2025 +0100 Bump minimum GTK version in .ui files to 3.24 Otherwise, it would trigger now when starting an --enable-gtk4 LO build with SAL_USE_VCLPLUGIN=gtk4. Change-Id: I2025bac6f1cfe9dc3bb572ec56c35e16079a681f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194139 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/vcl/unx/gtk4/convert3to4.cxx b/vcl/unx/gtk4/convert3to4.cxx index f75a2be75a27..8491351f1d5a 100644 --- a/vcl/unx/gtk4/convert3to4.cxx +++ b/vcl/unx/gtk4/convert3to4.cxx @@ -381,7 +381,7 @@ ConvertResult Convert3To4(const css::uno::Reference<css::xml::dom::XNode>& xNode assert(xLib->getNodeValue() == "gtk+"); xLib->setNodeValue("gtk"); css::uno::Reference<css::xml::dom::XNode> xVersion = xMap->getNamedItem("version"); - assert(xVersion->getNodeValue() == "3.20"); + assert(xVersion->getNodeValue() == "3.24"); xVersion->setNodeValue("4.0"); } else if (xChild->getNodeName() == "property")
