diff options
author | Eirik Aavitsland <[email protected]> | 2024-06-14 16:44:02 +0200 |
---|---|---|
committer | Eirik Aavitsland <[email protected]> | 2024-06-14 19:16:42 +0200 |
commit | ad922bbac1d65ff044c63160c73324fa27f44793 (patch) | |
tree | 0d3bb961b8b80a3ae8c4e940a7c3b4f778070302 | |
parent | 9c199a39d228658a20c1d6650ab6a7aedfaeccf6 (diff) |
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 <[email protected]>
-rw-r--r-- | src/gui/compat/removed_api.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
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 |