summaryrefslogtreecommitdiff
path: root/cui/source/options/cfgchart.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options/cfgchart.cxx')
-rw-r--r--cui/source/options/cfgchart.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cui/source/options/cfgchart.cxx b/cui/source/options/cfgchart.cxx
index 525761c3c86c..5649c4ea53f3 100644
--- a/cui/source/options/cfgchart.cxx
+++ b/cui/source/options/cfgchart.cxx
@@ -160,10 +160,9 @@ bool SvxChartColorTable::operator==( const SvxChartColorTable & _rOther ) const
SvxChartOptions::SvxChartOptions() :
::utl::ConfigItem( "Office.Chart" ),
- mbIsInitialized( false )
+ mbIsInitialized( false ),
+ maPropertyNames{ "DefaultColor/Series" }
{
- maPropertyNames.realloc( 1 );
- maPropertyNames[ 0 ] = "DefaultColor/Series";
}
SvxChartOptions::~SvxChartOptions()
@@ -239,13 +238,14 @@ void SvxChartOptions::ImplCommit()
// convert list to sequence
const size_t nCount = maDefColors.size();
uno::Sequence< sal_Int64 > aColors( nCount );
+ auto aColorsRange = asNonConstRange(aColors);
for( size_t i=0; i < nCount; i++ )
{
Color aData = maDefColors.getColor( i );
- aColors[ i ] = sal_uInt32(aData);
+ aColorsRange[ i ] = sal_uInt32(aData);
}
- aValues[ 0 ] <<= aColors;
+ aValues.getArray()[0] <<= aColors;
}
PutProperties( aNames, aValues );