summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-24 16:41:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-25 08:40:10 +0200
commit5de8a127cd1790d37d5af83153b8103468eca6ce (patch)
tree902d9cfb25eaa09f0ab9e632fef8715777784467 /include
parentf6001fb30c516ec6da39b0ca4058f8b28058df1f (diff)
canvas: std::auto_ptr -> std::unique_ptr
Change-Id: I1b58132c3155d59c78ef3e2414129319ee5e9fcd
Diffstat (limited to 'include')
-rw-r--r--include/canvas/propertysethelper.hxx2
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;
};
}