diff options
author | Jan Holesovsky <kendy@collabora.com> | 2019-04-02 23:03:01 +0200 |
---|---|---|
committer | Ashod Nakashian <ashnakash@gmail.com> | 2019-08-25 13:42:52 +0200 |
commit | 5c5ab9c1291235671261db39503e239117a952dd (patch) | |
tree | be4d05f4be8a90e2b39786ccd8a5a7e09612c6fc /include/vcl/graph.hxx | |
parent | eb581eff6ac41b938299b4c154ded6891bdd0c11 (diff) |
pdfium: Returning a const std::shared_ptr<...>& is not recommended.
Change-Id: Iff6acef712c5b95c8cc222fc5293c9304b1c03ec
(cherry picked from commit c0a3f61ef5c42d6cfa7484a2c759e7638da2c096)
Reviewed-on: https://gerrit.libreoffice.org/77692
Tested-by: Jenkins
Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'include/vcl/graph.hxx')
-rw-r--r-- | include/vcl/graph.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/graph.hxx b/include/vcl/graph.hxx index 91371a82beeb..b7cd1eb10438 100644 --- a/include/vcl/graph.hxx +++ b/include/vcl/graph.hxx @@ -224,7 +224,7 @@ public: const VectorGraphicDataPtr& getVectorGraphicData() const; void setPdfData(const std::shared_ptr<std::vector<sal_Int8>>& rPdfData); - const std::shared_ptr<std::vector<sal_Int8>>& getPdfData() const; + std::shared_ptr<std::vector<sal_Int8>> getPdfData() const; bool hasPdfData() const; /// Set the page number of the multi-page source this Graphic is rendered from. |