[Libreoffice-commits] core.git: vcl/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Thu Dec 24 21:13:19 UTC 2020
vcl/source/window/window2.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 44a04f68e88da833707bc829242351f349278732
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Thu Dec 24 21:09:38 2020 +0100
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Thu Dec 24 22:12:30 2020 +0100
Temporarily disable assert that kills Jenkins
It was introduced by 4491cee27c80bc83493136b323af5bdd128352e7 "replace
margin-left with margin-start and margin-right with margin-end", but keeps
breaking CppunitTest_sw_dialogs_test and CppunitTest_sw_dialogs_test2 of
<https://ci.libreoffice.org/job/gerrit_linux_clang_dbgutil/> now.
Change-Id: I91a7e4bdb6f39f3d6c094efe68a4accb1d6a99b2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108273
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index dc3dcdc93db0..6b334257afc2 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -1532,7 +1532,7 @@ bool Window::set_property(const OString &rKey, const OUString &rValue)
set_border_width(rValue.toInt32());
else if (rKey == "margin-start" || rKey == "margin-left")
{
- assert(rKey == "margin-start" && "margin-left deprecated in favor of margin-start");
+ //TODO: assert(rKey == "margin-start" && "margin-left deprecated in favor of margin-start");
set_margin_start(rValue.toInt32());
}
else if (rKey == "margin-end" || rKey == "margin-right")
More information about the Libreoffice-commits
mailing list