diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2019-12-18 15:01:38 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2019-12-23 08:21:14 +0100 |
commit | 0322a41224a7264bbe03a068647ab093bcc88f90 (patch) | |
tree | f3727c86193227546c9e5e5a393395f3da769522 /offapi | |
parent | f3e0595fcba689b07f6419c2fb540731a3aadecf (diff) |
XStyleLoader::loadStylesFromURL Allow loading from stream
Change-Id: Iab0c301096118203466dd91c724c25f1283a0488
Reviewed-on: https://gerrit.libreoffice.org/85392
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/style/XStyleLoader.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/offapi/com/sun/star/style/XStyleLoader.idl b/offapi/com/sun/star/style/XStyleLoader.idl index a695b79dde21..2899f23d61b2 100644 --- a/offapi/com/sun/star/style/XStyleLoader.idl +++ b/offapi/com/sun/star/style/XStyleLoader.idl @@ -38,8 +38,10 @@ published interface XStyleLoader: com::sun::star::uno::XInterface defined in this document are loaded.</p> @param URL The directory and the filename from document with the styles + You can also load from stream. Use "private:stream" as the URL and the InputStream parameter below. @param aOptions Specifies which of the Style families the method should load. + The <code>sequence<PropertyValue></code> has the following, optional items: <ul> <li> boolean LoadCellStyles </li> @@ -48,6 +50,7 @@ published interface XStyleLoader: com::sun::star::uno::XInterface <li> boolean LoadPageStyles </li> <li> boolean LoadNumberingStyles </li> <li> boolean OverwriteStyles</li> + <li> com::sun::star::io::XInputStream InputStream (since LibreOffice 6.5)</li> </ul> <p>As the default, all supported style families are loaded and existing styles are overwritten.</p> */ |