silence unknown property 'HyphNoLastWord'... etc warnings
warn: linguistic:3688232:3688232:linguistic/source/lngprophelp.cxx:636: unknown property 'HyphNoLastWord' warn: linguistic:3688232:3688232:linguistic/source/lngprophelp.cxx:636: unknown property 'HyphKeepType' warn: linguistic:3688232:3688232:linguistic/source/lngprophelp.cxx:636: unknown property 'HyphKeep' Change-Id: I4f99961e17bd4e0f90925b8530e25729d964d42e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168600 Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com> Tested-by: Jenkins
This commit is contained in:
parent
3c41e71449
commit
d25de4a046
1 changed files with 7 additions and 0 deletions
|
@ -632,6 +632,13 @@ void PropertyHelper_Hyphen::SetTmpPropVals( const PropertyValues &rPropVals )
|
|||
pnResVal = &nResHyphTextHyphenZone;
|
||||
else if ( rVal.Name == UPN_HYPH_NO_CAPS )
|
||||
pbResVal = &bResNoHyphenateCaps;
|
||||
else if (rVal.Name == UPN_HYPH_NO_LAST_WORD ||
|
||||
rVal.Name == UPN_HYPH_KEEP ||
|
||||
rVal.Name == UPN_HYPH_KEEP_TYPE)
|
||||
{
|
||||
// skip these known ones without warnings
|
||||
continue;
|
||||
}
|
||||
|
||||
SAL_WARN_IF( !(pnResVal || pbResVal), "linguistic", "unknown property '" << rVal.Name << "'");
|
||||
|
||||
|
|
Loading…
Reference in a new issue