diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-10 14:28:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-10 15:58:38 +0100 |
commit | ed0101dfaa3666422aa39dcc8c91aae6c4c36eae (patch) | |
tree | 2c76db13a1da5a48461879fd13e4079654295674 /extensions | |
parent | 10be54247d9685666b5a992dc360810f7f1348ec (diff) |
auto_ptr -> scoped_ptr
Change-Id: I16d457d2981b7b3f60c150d362b8b51f6a2700fd
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/update/check/updatecheckjob.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 <memory> +#include <sal/config.h> #include "updatecheck.hxx" #include "updatecheckconfig.hxx" #include "updatehdl.hxx" #include "updateprotocol.hxx" +#include <boost/scoped_ptr.hpp> #include <cppuhelper/implbase3.hxx> #include <cppuhelper/implementationentry.hxx> #include <cppuhelper/supportsservice.hxx> @@ -102,7 +102,7 @@ public: private: uno::Reference<uno::XComponentContext> 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 ); }; |