diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2018-04-21 14:39:33 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2018-04-23 14:09:37 +0200 |
commit | cbbca8d13d02cee0ba5081a714742d8e17613d32 (patch) | |
tree | 565e69d6fb67a7b5585ba0d2d8bdd59d22886cc5 /offapi | |
parent | 788ed94bff85b6e3578d23571e233783da455556 (diff) |
[API CHANGE] MediaProperties don't accept GraphicObject URL anymore
This changes the description for URL property as it doesn't
support GraphicObject URL (vnd.sun.star.GraphicObject) anymore
so not a direct API change, but it is a significant functional
change.
Change-Id: Ie440d2140274243733a18ebc18089d2daa820c74
Reviewed-on: https://gerrit.libreoffice.org/53243
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/graphic/MediaProperties.idl | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/offapi/com/sun/star/graphic/MediaProperties.idl b/offapi/com/sun/star/graphic/MediaProperties.idl index 590d6fb999ce..bc2df8d424fa 100644 --- a/offapi/com/sun/star/graphic/MediaProperties.idl +++ b/offapi/com/sun/star/graphic/MediaProperties.idl @@ -42,15 +42,18 @@ published service MediaProperties <p>In addition to the normal protocols like file:// or http:// you can use private URLs as follows to get access to graphics lying inside the graphicrepository system within an Office context: - <ul> <li><code>private:graphicrepository/<em><path_in_repository></em></code></li> </ul> -And additionally, GraphicObject scheme URLs like - <ul> <li>vnd.sun.star.GraphicObject:10000000000001940000012FB99807BD</li> </ul> - can be used to access graphics held by the GraphicCache implementation. </p> -</p> + + <p> + Note: As of LibreOffice 6.1 GraphicObject scheme URLs are not supported anymore. + For example: + <ul> + <li>vnd.sun.star.GraphicObject:10000000000001940000012FB99807BD</li> + </ul> + </p> */ [optional, property ] string URL; |