diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-21 02:49:04 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-04-22 13:57:31 +0200 |
commit | 4a4bdc142ab7a41b69512d54302851e7fbb3100b (patch) | |
tree | 3f2bb8413d74ff7fe5ba531a07fc5e64e9dbf280 /chart2/source/tools/AxisHelper.cxx | |
parent | cabb933bc2d76dc184e2cdc4c039f7055b73d8d2 (diff) |
fix the remaining issues with the changed handling of ErrorBar props
Change-Id: I75c839cbfccbe84e7aa98aef6959bcd0c5390ab6
Diffstat (limited to 'chart2/source/tools/AxisHelper.cxx')
-rw-r--r-- | chart2/source/tools/AxisHelper.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chart2/source/tools/AxisHelper.cxx b/chart2/source/tools/AxisHelper.cxx index a91d05ace485..8a769f808f3a 100644 --- a/chart2/source/tools/AxisHelper.cxx +++ b/chart2/source/tools/AxisHelper.cxx @@ -23,7 +23,7 @@ #include "ChartTypeHelper.hxx" #include "macros.hxx" #include "AxisIndexDefines.hxx" -#include "LineProperties.hxx" +#include "LinePropertiesHelper.hxx" #include "ContainerHelper.hxx" #include "servicenames_coosystems.hxx" #include "DataSeriesHelper.hxx" @@ -463,7 +463,7 @@ void AxisHelper::makeAxisVisible( const Reference< XAxis >& xAxis ) if( xProps.is() ) { xProps->setPropertyValue( "Show", uno::makeAny( sal_True ) ); - LineProperties::SetLineVisible( xProps ); + LinePropertiesHelper::SetLineVisible( xProps ); xProps->setPropertyValue( "DisplayLabels", uno::makeAny( sal_True ) ); } } @@ -473,7 +473,7 @@ void AxisHelper::makeGridVisible( const Reference< beans::XPropertySet >& xGridP if( xGridProperties.is() ) { xGridProperties->setPropertyValue( "Show", uno::makeAny( sal_True ) ); - LineProperties::SetLineVisible( xGridProperties ); + LinePropertiesHelper::SetLineVisible( xGridProperties ); } } @@ -665,7 +665,7 @@ sal_Bool AxisHelper::isAxisVisible( const Reference< XAxis >& xAxis ) if( xProps.is() ) { xProps->getPropertyValue( "Show" ) >>= bRet; - bRet = bRet && ( LineProperties::IsLineVisible( xProps ) + bRet = bRet && ( LinePropertiesHelper::IsLineVisible( xProps ) || areAxisLabelsVisible( xProps ) ); } @@ -689,7 +689,7 @@ sal_Bool AxisHelper::isGridVisible( const Reference< beans::XPropertySet >& xGri if( xGridProperies.is() ) { xGridProperies->getPropertyValue( "Show" ) >>= bRet; - bRet = bRet && LineProperties::IsLineVisible( xGridProperies ); + bRet = bRet && LinePropertiesHelper::IsLineVisible( xGridProperies ); } return bRet; |