diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-02-21 02:10:23 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-02-22 05:52:26 +0100 |
commit | 66b16aec3dc8f48f37179b8f5bc5ceaad0e0beb0 (patch) | |
tree | 0e6249126bc3dc22e51326a164056201612f9fab /chart2 | |
parent | cf5fbc124e29fb558f423152fa6bd2237de43608 (diff) |
replace auto_ptr with boost::scoped_ptr
Change-Id: I52299aa147799214c83a87dbc99104d8ba9b6206
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/inc/OPropertySet.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/inc/OPropertySet.hxx b/chart2/source/inc/OPropertySet.hxx index 2fdb0ba8fa58..10ac717ac291 100644 --- a/chart2/source/inc/OPropertySet.hxx +++ b/chart2/source/inc/OPropertySet.hxx @@ -33,7 +33,7 @@ #include <osl/mutex.hxx> #include "charttoolsdllapi.hxx" -#include <memory> +#include <boost/scoped_ptr.hpp> namespace property { @@ -226,7 +226,7 @@ private: ::osl::Mutex & m_rMutex; /// pImpl idiom implementation - ::std::auto_ptr< impl::ImplOPropertySet > m_pImplProperties; + boost::scoped_ptr< impl::ImplOPropertySet > m_pImplProperties; bool m_bSetNewValuesExplicitlyEvenIfTheyEqualDefault; }; |