diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 08:20:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 10:33:24 +0200 |
commit | be31d107f5aa5e03b78772aaf67d8685b20965d1 (patch) | |
tree | 6b7d2471552b16ec6979414cdecfd4b5d5ff06d5 /chart2/source/inc | |
parent | e4c996d3627f95df693cb702451201c277f04b18 (diff) |
chart2: std::auto_ptr -> std::unique_ptr
Change-Id: Ia92c18858c8ed7cfc2765cc2310f3bf7bfd7e8df
Diffstat (limited to 'chart2/source/inc')
-rw-r--r-- | chart2/source/inc/ConfigColorScheme.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/inc/ConfigColorScheme.hxx b/chart2/source/inc/ConfigColorScheme.hxx index 8b8210f2ef77..1a737428ff9e 100644 --- a/chart2/source/inc/ConfigColorScheme.hxx +++ b/chart2/source/inc/ConfigColorScheme.hxx @@ -73,7 +73,7 @@ private: // member variables ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext; - ::std::auto_ptr< impl::ChartConfigItem > m_apChartConfigItem; + ::std::unique_ptr< impl::ChartConfigItem > m_apChartConfigItem; mutable ::com::sun::star::uno::Sequence< sal_Int64 > m_aColorSequence; mutable sal_Int32 m_nNumberOfColors; bool m_bNeedsUpdate; |