vcl/source/window/layout.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 78a2a55d87a1c9d65953332f3226e7a64921ce78 Author: Tor Lillqvist <[email protected]> AuthorDate: Wed Jan 19 11:12:27 2022 +0200 Commit: Tor Lillqvist <[email protected]> CommitDate: Wed Jan 19 11:39:59 2022 +0100 Fix typo in SAL_WARN() call Change-Id: Idce259d582101901f6a9abf553c58039d05c694f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128593 Tested-by: Tor Lillqvist <[email protected]> Reviewed-by: Tor Lillqvist <[email protected]> diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index cb89f0f5fee2..774f7990b95e 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -645,7 +645,7 @@ void VclButtonBox::setAllocation(const Size &rAllocation) tools::Long nExtraSpace = nAllocPrimaryDimension - nMainPrimaryDimension; if (nExtraSpace < 0) { - SAL_WARN("vcl.layout", "nExtra space went negative, setting to zero"); + SAL_WARN("vcl.layout", "nExtraSpace went negative, setting to zero"); nExtraSpace = 0; } nExtraSpace += (aReq.m_aMainGroupDimensions.size()-1) * nSpacing;
