diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 17:26:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 17:51:30 +0200 |
commit | 89c72084b23b14780d0799f2f2f32c579212f497 (patch) | |
tree | 5d7aceedbe6be23b302c382e14d5148d460b0b89 /sc/source/ui/vba/vbaaxis.hxx | |
parent | 741629f48a3fe72fb1e9fb68077446907585e852 (diff) |
sc: std::auto_ptr -> std::unique_ptr
Change-Id: I25468d578de597ff9aeba3ffc850c630fa532767
Diffstat (limited to 'sc/source/ui/vba/vbaaxis.hxx')
-rw-r--r-- | sc/source/ui/vba/vbaaxis.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sc/source/ui/vba/vbaaxis.hxx b/sc/source/ui/vba/vbaaxis.hxx index bda2494755b0..6f10b66d5285 100644 --- a/sc/source/ui/vba/vbaaxis.hxx +++ b/sc/source/ui/vba/vbaaxis.hxx @@ -34,9 +34,7 @@ class ScVbaAxis : public ScVbaAxis_BASE bool bCrossesAreCustomized; ScVbaChart* getChartPtr() throw( css::uno::RuntimeException ); bool isValueAxis() throw( css::script::BasicErrorException ); - SAL_WNODEPRECATED_DECLARATIONS_PUSH - std::auto_ptr<ov::ShapeHelper> oShapeHelper; - SAL_WNODEPRECATED_DECLARATIONS_POP + std::unique_ptr<ov::ShapeHelper> oShapeHelper; public: ScVbaAxis( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext > & xContext, const css::uno::Reference< css::beans::XPropertySet >& _xPropertySet, sal_Int32 _nType, sal_Int32 _nGroup ); |