summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-30 08:44:39 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-30 10:33:25 +0200
commit05dfa2f6bfaffd0caa380d246027082bd2969aba (patch)
tree488c49ae6a0d4cd678b705dfb3a789da29583f68 /cppuhelper
parent476f5aad6efc176c88309f18ce686fd3fc1be609 (diff)
cppuhelper: std::auto_ptr -> std::unique_ptr
Change-Id: I601fac44b272671b2763b45c5ef284cdd44d5066
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/factory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/source/factory.cxx b/cppuhelper/source/factory.cxx
index 11734e1f5000..a212e7dac5ca 100644
--- a/cppuhelper/source/factory.cxx
+++ b/cppuhelper/source/factory.cxx
@@ -538,7 +538,7 @@ private:
Reference<XSingleComponentFactory > xModuleFactory;
Reference<XSingleServiceFactory > xModuleFactoryDepr;
Reference< beans::XPropertySetInfo > m_xInfo;
- ::std::auto_ptr< IPropertyArrayHelper > m_property_array_helper;
+ ::std::unique_ptr< IPropertyArrayHelper > m_property_array_helper;
protected:
using OPropertySetHelper::getTypes;
};