diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-03-23 13:37:25 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-03-23 14:32:37 +0100 |
commit | 8540c7b18bae9c9b46e6feb7658198a7fc62e811 (patch) | |
tree | 35743ff06a7f5e43bdfbaa5c136d0836cda26e28 /offapi | |
parent | fecca49c309fc723c524f12fa671114b316a5562 (diff) |
sw: add pad-to-5 numbering
This is the last padded numbering type that is supported by Word but was
not supported by Writer.
Change-Id: Ica1a0843897c61a4b569105fd21e5bfe7b5012cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90912
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/style/NumberingType.idl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/offapi/com/sun/star/style/NumberingType.idl b/offapi/com/sun/star/style/NumberingType.idl index 0bab450f1209..230103695bda 100644 --- a/offapi/com/sun/star/style/NumberingType.idl +++ b/offapi/com/sun/star/style/NumberingType.idl @@ -513,6 +513,13 @@ published constants NumberingType @since LibreOffice 7.0 */ const short ARABIC_ZERO4 = 66; + + /** Numbering is in Arabic numbers, padded with zero to have a length of at least five, as + "00001, 00002, ..., 10000, 10001, ...". + + @since LibreOffice 7.0 + */ + const short ARABIC_ZERO5 = 67; }; |