summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-03-12 12:51:23 +0900
committerTomaž Vajngerl <quikee@gmail.com>2018-03-12 12:28:58 +0100
commitab9eff78f05e71d4d853fe72c03823287b49c93b (patch)
tree7dd6e7660a1a7745ac9e8961b4e3c2aa101e0d01 /include
parenteda031b57f7faab682c6ea6c16892a2f243ec6cf (diff)
remove support of GraphicObject URL from GraphicAccess
Change-Id: I4f14241f8528e025ddb108c73bee2df61f8927de Reviewed-on: https://gerrit.libreoffice.org/51103 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/svtools/imageresourceaccess.hxx13
1 files changed, 5 insertions, 8 deletions
diff --git a/include/svtools/imageresourceaccess.hxx b/include/svtools/imageresourceaccess.hxx
index 99be3b08ea27..ee30ab0b75dc 100644
--- a/include/svtools/imageresourceaccess.hxx
+++ b/include/svtools/imageresourceaccess.hxx
@@ -38,13 +38,10 @@ namespace svt
*/
namespace GraphicAccess
{
- /** determines whether the given URL denotes an image within a resource
- ( or an image specified by a vnd.sun.star.GraphicObject scheme URL )
- */
- SVT_DLLPUBLIC bool isSupportedURL( const OUString& _rURL );
+ /** determines whether the given URL denotes an image within a resource */
+ SVT_DLLPUBLIC bool isSupportedURL( const OUString& _rURL );
- /** for a given URL of an image within a resource ( or an image specified by a vnd.sun.star.GraphicObject scheme URL ), this method retrieves
- an SvStream for this image.
+ /** for a given URL of an image within a resource, this method retrieves an SvStream for this image.
This method works for arbitrary URLs denoting an image, since the
css::graphics::GraphicsProvider service is used
@@ -52,12 +49,12 @@ namespace svt
the image must be copied), so you are strongly encouraged to only use it
when you know that the image is small enough.
*/
- SVT_DLLPUBLIC SvStream* getImageStream(
+ SVT_DLLPUBLIC SvStream* getImageStream(
const css::uno::Reference< css::uno::XComponentContext >& _rxContext,
const OUString& _rImageResourceURL
);
- /** for a given URL of an image within a resource ( or an image specified by a vnd.sun.star.GraphicObject scheme URL ), this method retrieves
+ /** for a given URL of an image within a resource, this method retrieves
an css::io::XInputStream for this image.
*/
SVT_DLLPUBLIC css::uno::Reference< css::io::XInputStream >