diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-10-30 12:21:49 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-11-01 11:15:35 +0100 |
commit | 2884d57d4717afc3c31baee0ebc4a3e8b1c1d2f2 (patch) | |
tree | 7895b0b38b75fd35011ed24245d81a9340246c13 /offapi/com | |
parent | 2d928a87788644f7c6d46b70ab03bc13a8bf89d3 (diff) |
TSCP: Support DocInfo.Custom field for ODP file format
Impress has a limited support for fields - this includes support
for DocInfo.Custom field, which shows the user defined custom
fields that are used in TSCP. This commit adds minimal support
(only what is needed for TSCP) for DocInfo.Custom field but only
supports string fields for now. It is not possible to add the field
manually, at least not until the full support is added.
Change-Id: Ib3b73ab22fd4fe65ab6fb5173fe035a3359deea5
Reviewed-on: https://gerrit.libreoffice.org/44041
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/text/textfield/Type.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/offapi/com/sun/star/text/textfield/Type.idl b/offapi/com/sun/star/text/textfield/Type.idl index 454b1c765a8a..648400a224ba 100644 --- a/offapi/com/sun/star/text/textfield/Type.idl +++ b/offapi/com/sun/star/text/textfield/Type.idl @@ -42,8 +42,8 @@ constants Type const long PRESENTATION_HEADER = 11; const long PRESENTATION_FOOTER = 12; const long PRESENTATION_DATE_TIME = 13; - const long PAGE_NAME = 14; - const long CUSTOM_PROPERTY = 15; + const long PAGE_NAME = 14; + const long DOCINFO_CUSTOM = 15; }; }; }; }; }; }; |