officecfg/registry/schema/org/openoffice/Office/Writer.xcs | 2 +- sw/qa/filter/ww8/ww8.cxx | 1 - sw/source/filter/ww8/ww8par6.cxx | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-)
New commits: commit 61be351ac83acec75788d2f79a9038486163160f Author: Miklos Vajna <vmik...@collabora.com> AuthorDate: Thu Apr 20 08:13:12 2023 +0200 Commit: Miklos Vajna <vmik...@collabora.com> CommitDate: Thu Apr 20 11:03:20 2023 +0200 sw floattable: import floating tables from DOC as split flys by default To get wider testing. Change-Id: Id9d21aeca3bb9c00a5b4adfd45934a242e7559bc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150597 Reviewed-by: Miklos Vajna <vmik...@collabora.com> Tested-by: Jenkins diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs index 917ea0289934..cef727b23c8b 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs @@ -5680,7 +5680,7 @@ <desc>Specifies whether a floating table should be imported as a split text frame.</desc> <label>Import floating table as split frame.</label> </info> - <value>false</value> + <value>true</value> </prop> </group> </group> diff --git a/sw/qa/filter/ww8/ww8.cxx b/sw/qa/filter/ww8/ww8.cxx index f4db23ac6f8b..c7dc85669a2c 100644 --- a/sw/qa/filter/ww8/ww8.cxx +++ b/sw/qa/filter/ww8/ww8.cxx @@ -232,7 +232,6 @@ CPPUNIT_TEST_FIXTURE(Test, testDocxFloatingTableExport) CPPUNIT_TEST_FIXTURE(Test, testDocFloatingTableImport) { - SwModelTestBase::FlySplitGuard aGuard; // Given a document with 2 pages: createSwDoc("floattable-compat14.doc"); diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx index 45a210d8bc0d..eed7d978a939 100644 --- a/sw/source/filter/ww8/ww8par6.cxx +++ b/sw/source/filter/ww8/ww8par6.cxx @@ -2468,7 +2468,7 @@ bool IsFlySplitAllowed(bool bFuzzing) if (!bRet) { - bRet = getenv("SW_FORCE_FLY_SPLIT") != nullptr; + bRet = getenv("SW_DISABLE_FLY_SPLIT") == nullptr; } return bRet;