linguistic/source/lngprophelp.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit ca7878ae5ee27744a9741b071d36d8088266fc6b Author: Mike Kaganski <[email protected]> AuthorDate: Wed Nov 12 12:31:55 2025 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Wed Nov 12 15:16:15 2025 +0100 silence unknown property 'HyphZoneAlways' warnings Similar to commit d25de4a04671c2f380fc86a58259b073c49dfe19 (silence unknown property 'HyphNoLastWord'... etc warnings, 2024-06-10), and commit f8b9cd8fd13897094a014ad06df406f0c78adc62 (tdf#165354 sw xmloff: implement HyphenationKeepLine – part 2, 2025-03-03). The new property was introduced in commit 7d384fb1c232f7aa720436bc68dc1de334bf7297 (tdf#165984 sw cui xmloff: add Paragraph/Column/Page/Spread end zone, 2025-04-01). Change-Id: I89d5fbc78041e3a94ddc2fc4efb0f8e43cc6d7c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193855 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/linguistic/source/lngprophelp.cxx b/linguistic/source/lngprophelp.cxx index f51f24a51f89..6cd56c11f5d7 100644 --- a/linguistic/source/lngprophelp.cxx +++ b/linguistic/source/lngprophelp.cxx @@ -635,6 +635,7 @@ void PropertyHelper_Hyphen::SetTmpPropVals( const PropertyValues &rPropVals ) else if (rVal.Name == UPN_HYPH_NO_LAST_WORD || rVal.Name == UPN_HYPH_KEEP || rVal.Name == UPN_HYPH_KEEP_LINE || + rVal.Name == UPN_HYPH_ZONE_ALWAYS || rVal.Name == UPN_HYPH_KEEP_TYPE) { // skip these known ones without warnings
