diff options
author | dante <dante19031999@gmail.com> | 2020-12-26 18:53:18 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-12-27 08:29:27 +0100 |
commit | 78552cb9b167a677952bf80eb0c7af62baaf015a (patch) | |
tree | f3f6a0fcd8168fc44091d258ec1b821fc017d4c8 /offapi | |
parent | a26504cb5790eff1ca8b932382f73ff3baaec50a (diff) |
Preparations for customized xml entities on export
Change-Id: I8ad4af7e27ae5f8908f4c932242cb96abbf3de90
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108354
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/xml/sax/XWriter.idl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/offapi/com/sun/star/xml/sax/XWriter.idl b/offapi/com/sun/star/xml/sax/XWriter.idl index a79e7b156a1a..62d3d74256af 100644 --- a/offapi/com/sun/star/xml/sax/XWriter.idl +++ b/offapi/com/sun/star/xml/sax/XWriter.idl @@ -21,7 +21,7 @@ #include <com/sun/star/io/XActiveDataSource.idl> #include <com/sun/star/xml/sax/XExtendedDocumentHandler.idl> - +#include <com/sun/star/beans/Pair.idl> module com { module sun { module star { module xml { module sax { @@ -35,6 +35,11 @@ interface XWriter { interface com::sun::star::io::XActiveDataSource; interface com::sun::star::xml::sax::XExtendedDocumentHandler; + + /** Adds support for custom entity names list + * @since LibreOffice 7.2 + */ + void setCustomEntityNames( [in] sequence< com::sun::star::beans::Pair<string,string> > replacements ); }; |