diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2020-01-10 16:20:34 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@cib.de> | 2020-01-13 11:00:45 +0100 |
commit | 88ff7edb95602648ac5bd00b29262cbe02f8bf83 (patch) | |
tree | ab61d8f26723c8b416fdaa6a82429f3b33ce0116 /offapi/com/sun | |
parent | 9f4e9cacf02f6d6df939b2465b46d3398b68b8d5 (diff) |
offapi: misleadingly named ParaHyphenationMaxLeadingChars/Trailing
Change-Id: Iaf2fe6467b16b36c80ff8e4207b3749c7b34d39e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86565
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Tested-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'offapi/com/sun')
-rw-r--r-- | offapi/com/sun/star/style/ParagraphProperties.idl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/offapi/com/sun/star/style/ParagraphProperties.idl b/offapi/com/sun/star/style/ParagraphProperties.idl index 30aa9a28c608..6aca55d1b40f 100644 --- a/offapi/com/sun/star/style/ParagraphProperties.idl +++ b/offapi/com/sun/star/style/ParagraphProperties.idl @@ -334,13 +334,15 @@ published service ParagraphProperties */ [optional, property] short ParaHyphenationMaxHyphens; - /** specifies the maximum number of characters to remain before the + /** specifies the minimum number of characters to remain before the hyphen character (when hyphenation is applied). + @note Confusingly it is named Max but specifies a minimum. */ [optional, property] short ParaHyphenationMaxLeadingChars; - /** specifies the maximum number of characters to remain after the + /** specifies the minimum number of characters to remain after the hyphen character (when hyphenation is applied). + @note Confusingly it is named Max but specifies a minimum. */ [optional, property] short ParaHyphenationMaxTrailingChars; |