diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-01-20 22:18:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-01-21 13:45:14 +0100 |
commit | 928cb2963844ffd07fdbda6ec55f8de0c51581ff (patch) | |
tree | bfd6329d1c7138e80cd00cf32e4cf5ab9ea558fb /chart2/source/view/main/ChartView.cxx | |
parent | 4304947164bbcd3fea758df491a730b01d578be2 (diff) |
use more concrete types in chart2, BaseCoordinateSystem
Change-Id: I25fc26c9c3eb861d72c44ac04e502b2f002ef951
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128711
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/view/main/ChartView.cxx')
-rw-r--r-- | chart2/source/view/main/ChartView.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx index fff8c6ea08d3..d1ec2a672571 100644 --- a/chart2/source/view/main/ChartView.cxx +++ b/chart2/source/view/main/ChartView.cxx @@ -1796,13 +1796,12 @@ bool lcl_getPropertySwapXAndYAxis( const rtl::Reference< Diagram >& xDiagram ) if( xDiagram.is() ) { - uno::Sequence< uno::Reference< XCoordinateSystem > > aCooSysList( xDiagram->getCoordinateSystems() ); - if( aCooSysList.hasElements() ) + const std::vector< rtl::Reference< BaseCoordinateSystem > > & aCooSysList( xDiagram->getBaseCoordinateSystems() ); + if( !aCooSysList.empty() ) { - uno::Reference<beans::XPropertySet> xProp(aCooSysList[0], uno::UNO_QUERY ); - if( xProp.is()) try + try { - xProp->getPropertyValue( "SwapXAndYAxis" ) >>= bSwapXAndY; + aCooSysList[0]->getPropertyValue( "SwapXAndYAxis" ) >>= bSwapXAndY; } catch( const uno::Exception& ) { |