sw/CppunitTest_sw_uibase_frmdlg.mk | 4 ++++ sw/qa/uibase/frmdlg/data/wrapped-math-object.docx |binary 2 files changed, 4 insertions(+)
New commits: commit 2aa773c9bdb8fc89225d251ca2662a328a0d5e6f Author: Miklos Vajna <[email protected]> AuthorDate: Thu Jan 25 08:18:59 2024 +0100 Commit: Miklos Vajna <[email protected]> CommitDate: Thu Jan 25 09:58:25 2024 +0100 CppunitTest_sw_uibase_frmdlg: turn on set_non_application_font_use Similar to commit dc4d7500c9d283e26d1553ce11366a217cf1f69d (Fix CppunitTest_sd_import_tests-smartart non_application_font_use, 2023-10-23). - sw/qa/uibase/frmdlg/data/wrapped-math-object.docx: word/media/image1.wmf: old WMF used the System font, replaced this with a different WMF, as the preview gets updated before the first document render anyway. (Binary patching 'System' -> 'DejaVu Sans' is not easy.) Change-Id: I5282ec1708d3a52d1fd2795a283b5e96884409d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162551 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Jenkins diff --git a/sw/CppunitTest_sw_uibase_frmdlg.mk b/sw/CppunitTest_sw_uibase_frmdlg.mk index 0f831a46f906..abfa133f7a06 100644 --- a/sw/CppunitTest_sw_uibase_frmdlg.mk +++ b/sw/CppunitTest_sw_uibase_frmdlg.mk @@ -73,4 +73,8 @@ $(eval $(call gb_CppunitTest_use_uiconfigs,sw_uibase_frmdlg, \ $(eval $(call gb_CppunitTest_use_more_fonts,sw_uibase_frmdlg)) +ifneq ($(filter MORE_FONTS,$(BUILD_TYPE)),) +$(eval $(call gb_CppunitTest_set_non_application_font_use,sw_uibase_frmdlg,abort)) +endif + # vim: set noet sw=4 ts=4: diff --git a/sw/qa/uibase/frmdlg/data/wrapped-math-object.docx b/sw/qa/uibase/frmdlg/data/wrapped-math-object.docx index c6f76dd5d77e..46e6106e7677 100644 Binary files a/sw/qa/uibase/frmdlg/data/wrapped-math-object.docx and b/sw/qa/uibase/frmdlg/data/wrapped-math-object.docx differ
