diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-24 16:41:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-25 08:40:10 +0200 |
commit | 5de8a127cd1790d37d5af83153b8103468eca6ce (patch) | |
tree | 902d9cfb25eaa09f0ab9e632fef8715777784467 /include/canvas/propertysethelper.hxx | |
parent | f6001fb30c516ec6da39b0ca4058f8b28058df1f (diff) |
canvas: std::auto_ptr -> std::unique_ptr
Change-Id: I1b58132c3155d59c78ef3e2414129319ee5e9fcd
Diffstat (limited to 'include/canvas/propertysethelper.hxx')
-rw-r--r-- | include/canvas/propertysethelper.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/canvas/propertysethelper.hxx b/include/canvas/propertysethelper.hxx index b90d9ef344e5..dada480e0b0d 100644 --- a/include/canvas/propertysethelper.hxx +++ b/include/canvas/propertysethelper.hxx @@ -142,7 +142,7 @@ namespace canvas const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& xListener ); private: - std::auto_ptr<MapType> mpMap; + std::unique_ptr<MapType> mpMap; InputMap maMapEntries; }; } |