Kaydet (Commit) 66b16aec authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Markus Mohrhard

replace auto_ptr with boost::scoped_ptr

Change-Id: I52299aa147799214c83a87dbc99104d8ba9b6206
üst cf5fbc12
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#include <osl/mutex.hxx> #include <osl/mutex.hxx>
#include "charttoolsdllapi.hxx" #include "charttoolsdllapi.hxx"
#include <memory> #include <boost/scoped_ptr.hpp>
namespace property namespace property
{ {
...@@ -226,7 +226,7 @@ private: ...@@ -226,7 +226,7 @@ private:
::osl::Mutex & m_rMutex; ::osl::Mutex & m_rMutex;
/// pImpl idiom implementation /// pImpl idiom implementation
::std::auto_ptr< impl::ImplOPropertySet > m_pImplProperties; boost::scoped_ptr< impl::ImplOPropertySet > m_pImplProperties;
bool m_bSetNewValuesExplicitlyEvenIfTheyEqualDefault; bool m_bSetNewValuesExplicitlyEvenIfTheyEqualDefault;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment