From ad922bbac1d65ff044c63160c73324fa27f44793 Mon Sep 17 00:00:00 2001 From: Eirik Aavitsland Date: Fri, 14 Jun 2024 16:44:02 +0200 Subject: Fix 6.8 ABI break: missing symbol QPageLayout::setBottomMargin() This was forgotten when the other set*Margin() methods were moved to removed_api in 6c72080f26e9b70041434c6d762f7d601a2bf19c. Fixes: QTBUG-126374 Pick-to: 6.8 Change-Id: I4be96c23540fac812ddb456699218bc437c4a3f7 Reviewed-by: Volker Hilsheimer --- src/gui/compat/removed_api.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gui/compat/removed_api.cpp b/src/gui/compat/removed_api.cpp index a642c33c428..c052ce6a250 100644 --- a/src/gui/compat/removed_api.cpp +++ b/src/gui/compat/removed_api.cpp @@ -63,6 +63,11 @@ bool QPageLayout::setTopMargin(qreal topMargin) return setTopMargin(topMargin, OutOfBoundsPolicy::Reject); } +bool QPageLayout::setBottomMargin(qreal bottomMargin) +{ + return setBottomMargin(bottomMargin, OutOfBoundsPolicy::Reject); +} + // #include "qotherheader.h" // // implement removed functions from qotherheader.h // order sections alphabetically -- cgit v1.2.3