summaryrefslogtreecommitdiff
path: root/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-23 10:04:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-23 11:22:08 +0200
commit0b2f1292b3504b54e3799cd3d942365058360347 (patch)
treeb36fbf6339ae09d1d16cf8c23c7f46d0767c6dcc /chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
parented5abacda979d05fa4328953662ea98e6afa3c51 (diff)
loplugin:comparisonwithconstant in chart2
Change-Id: I95787007b26cdcf0d5d1617ecd0e55d377b551d7 Reviewed-on: https://gerrit.libreoffice.org/37941 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx')
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
index f8bbbffda161..ec1683ba8038 100644
--- a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
+++ b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx
@@ -252,7 +252,7 @@ Any WrappedSymbolTypeProperty::getPropertyValue( const Reference< beans::XProper
}
else
{
- if( css::chart::ChartSymbolType::NONE == aValue )
+ if( aValue == css::chart::ChartSymbolType::NONE )
m_aOuterValue <<= css::chart::ChartSymbolType::NONE;
else
m_aOuterValue <<= css::chart::ChartSymbolType::AUTO;
@@ -456,7 +456,7 @@ beans::PropertyState WrappedSymbolSizeProperty::getPropertyState( const Referenc
Reference< beans::XPropertySet > xSeriesPropertySet( xInnerPropertyState, uno::UNO_QUERY );
if( xSeriesPropertySet.is() && ( xSeriesPropertySet->getPropertyValue("Symbol") >>= aSymbol ))
{
- if( chart2::SymbolStyle_NONE != aSymbol.Style )
+ if( aSymbol.Style != chart2::SymbolStyle_NONE )
return beans::PropertyState_DIRECT_VALUE;
}
}