diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-06 16:34:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-06 21:39:41 +0200 |
commit | f76a7bcc65343a4aa51d24b13c998bf04031d89f (patch) | |
tree | d272dfda5e78e62ed619de64a981b864efeaf73c /include | |
parent | 08e09136a60e176703c08aff8a7a8e8a12d3f9b1 (diff) |
return unique_ptr from :svt::GraphicAccess::getImageStream
Change-Id: Ie63259ce826101e553c1cb03a85e7c0ba5f0f9f5
Reviewed-on: https://gerrit.libreoffice.org/78719
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/imageresourceaccess.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svtools/imageresourceaccess.hxx b/include/svtools/imageresourceaccess.hxx index 65806566936d..6adff39ae4aa 100644 --- a/include/svtools/imageresourceaccess.hxx +++ b/include/svtools/imageresourceaccess.hxx @@ -50,7 +50,7 @@ SVT_DLLPUBLIC bool isSupportedURL(OUString const & rURL); 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 std::unique_ptr<SvStream> getImageStream( css::uno::Reference<css::uno::XComponentContext> const & rxContext, OUString const & rImageResourceURL); |