diff options
Diffstat (limited to 'vcl/source/gdi/graph.cxx')
-rw-r--r-- | vcl/source/gdi/graph.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vcl/source/gdi/graph.cxx b/vcl/source/gdi/graph.cxx index c5a7901e25ca..7a61594e1b42 100644 --- a/vcl/source/gdi/graph.cxx +++ b/vcl/source/gdi/graph.cxx @@ -593,6 +593,17 @@ const SvgDataPtr& Graphic::getSvgData() const return mpImpGraphic->getSvgData(); } +void Graphic::setPdfData(const uno::Sequence<sal_Int8>& rPdfData) +{ + ImplTestRefCount(); + mpImpGraphic->maPdfData = rPdfData; +} + +const uno::Sequence<sal_Int8>& Graphic::getPdfData() const +{ + return mpImpGraphic->maPdfData; +} + namespace { struct Id: public rtl::Static<cppu::OImplementationId, Id> {}; |