diff options
Diffstat (limited to 'chart2/source/tools/ConfigColorScheme.cxx')
-rw-r--r-- | chart2/source/tools/ConfigColorScheme.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chart2/source/tools/ConfigColorScheme.cxx b/chart2/source/tools/ConfigColorScheme.cxx index 51fb7cd8ab61..69ddf393ef43 100644 --- a/chart2/source/tools/ConfigColorScheme.cxx +++ b/chart2/source/tools/ConfigColorScheme.cxx @@ -24,6 +24,7 @@ #include <unotools/configitem.hxx> #include <sal/macros.h> #include <cppuhelper/supportsservice.hxx> +#include <comphelper/sequence.hxx> #include <set> @@ -88,7 +89,7 @@ void ChartConfigItem::ImplCommit() void ChartConfigItem::addPropertyNotification( const OUString & rPropertyName ) { m_aPropertiesToNotify.insert( rPropertyName ); - EnableNotification( ContainerHelper::ContainerToSequence( m_aPropertiesToNotify )); + EnableNotification( comphelper::containerToSequence<OUString>( m_aPropertiesToNotify )); } uno::Any ChartConfigItem::getProperty( const OUString & aPropertyName ) |