summaryrefslogtreecommitdiffstats
path: root/chart2/source/model/main/StockBar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/model/main/StockBar.cxx')
-rw-r--r--chart2/source/model/main/StockBar.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/model/main/StockBar.cxx b/chart2/source/model/main/StockBar.cxx
index 02d63f9bc7ef..9cf832463e33 100644
--- a/chart2/source/model/main/StockBar.cxx
+++ b/chart2/source/model/main/StockBar.cxx
@@ -19,7 +19,7 @@
#include "StockBar.hxx"
-#include "LineProperties.hxx"
+#include "LinePropertiesHelper.hxx"
#include "FillProperties.hxx"
#include "UserDefinedProperties.hxx"
#include "PropertyHelper.hxx"
@@ -58,7 +58,7 @@ private:
uno::Sequence< Property > lcl_GetPropertySequence()
{
::std::vector< ::com::sun::star::beans::Property > aProperties;
- ::chart::LineProperties::AddPropertiesToVector( aProperties );
+ ::chart::LinePropertiesHelper::AddPropertiesToVector( aProperties );
::chart::FillProperties::AddPropertiesToVector( aProperties );
::chart::UserDefinedProperties::AddPropertiesToVector( aProperties );
@@ -99,7 +99,7 @@ struct StaticStockBarDefaults_Initializer
private:
void lcl_AddDefaultsToMap( ::chart::tPropertyValueMap & rOutMap )
{
- ::chart::LineProperties::AddDefaultsToMap( rOutMap );
+ ::chart::LinePropertiesHelper::AddDefaultsToMap( rOutMap );
::chart::FillProperties::AddDefaultsToMap( rOutMap );
// override other defaults
@@ -129,7 +129,7 @@ StockBar::StockBar( bool bRisingCourse ) :
::chart::FillProperties::PROP_FILL_COLOR,
uno::makeAny( sal_Int32( 0x000000 ))); // black
setFastPropertyValue_NoBroadcast(
- ::chart::LineProperties::PROP_LINE_COLOR,
+ ::chart::LinePropertiesHelper::PROP_LINE_COLOR,
uno::makeAny( sal_Int32( 0xb3b3b3 ))); // gray30
}
}