From ed0101dfaa3666422aa39dcc8c91aae6c4c36eae Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 10 Feb 2014 14:28:09 +0100 Subject: auto_ptr -> scoped_ptr Change-Id: I16d457d2981b7b3f60c150d362b8b51f6a2700fd --- extensions/source/update/check/updatecheckjob.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'extensions/source/update') diff --git a/extensions/source/update/check/updatecheckjob.cxx b/extensions/source/update/check/updatecheckjob.cxx index fecf12f1695c..cd52e1f02063 100644 --- a/extensions/source/update/check/updatecheckjob.cxx +++ b/extensions/source/update/check/updatecheckjob.cxx @@ -17,14 +17,14 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - -#include +#include #include "updatecheck.hxx" #include "updatecheckconfig.hxx" #include "updatehdl.hxx" #include "updateprotocol.hxx" +#include #include #include #include @@ -102,7 +102,7 @@ public: private: uno::Reference m_xContext; uno::Reference< frame::XDesktop2 > m_xDesktop; - std::auto_ptr< InitUpdateCheckJobThread > m_pInitThread; + boost::scoped_ptr< InitUpdateCheckJobThread > m_pInitThread; void handleExtensionUpdates( const uno::Sequence< beans::NamedValue > &rListProp ); }; -- cgit