diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-09-12 15:39:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-09-12 19:28:23 +0200 |
commit | f976823a66858d3ecc749544be50fdda0c8c40f6 (patch) | |
tree | 27ed7eca9bbd62aa8d18f08ede8e9ccdf1e0c728 /chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx | |
parent | 925b8da69413708249c6d3f08c86ce54faf4b2e3 (diff) |
use more concrete UNO class in chart2
Change-Id: Ifbdcf39f6f621dc63746a8c389a19c52aab847b9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173264
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx')
-rw-r--r-- | chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx b/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx index 1623eecb2364..1b9da6491134 100644 --- a/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx +++ b/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx @@ -1845,6 +1845,11 @@ Reference< chart2::XDiagram > SAL_CALL DiagramWrapper::getDiagram() return m_spChart2ModelContact->getDiagram(); } +rtl::Reference< ::chart::Diagram > DiagramWrapper::getUnderlyingDiagram() +{ + return m_spChart2ModelContact->getDiagram(); +} + void SAL_CALL DiagramWrapper::setDiagram( const Reference< chart2::XDiagram >& /*xDiagram*/ ) { |